debug/src/utilities.h

00001 /***************************************************************************
00002  *   Copyright (C) 2004 by Lynn Hazan                                      *
00003  *   lynn@myrealbox.com                                                    *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 2 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  *   This program is distributed in the hope that it will be useful,       *
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00013  *   GNU General Public License for more details.                          *
00014  *                                                                         *
00015  *   You should have received a copy of the GNU General Public License     *
00016  *   along with this program; if not, write to the                         *
00017  *   Free Software Foundation, Inc.,                                       *
00018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00019  ***************************************************************************/
00020 #ifndef UTILITIES_H
00021 #define UTILITIES_H
00022 
00023 // include files for Qt
00024 #include <qstring.h>
00025 #include <qstringlist.h> 
00026 #include <qfile.h>
00027 #include <qfileinfo.h>
00028  
00029 //General C++ include files
00030 #include <iostream>
00031 #include <fstream>
00032 using namespace std;
00033 
00037 class Utilities{
00038 public:
00039     inline Utilities(){};
00040     inline ~Utilities(){};
00041     
00048     inline static bool compareVersion(QString oldVersion, QString newVersion){
00049      QStringList oldList = QStringList::split(".", oldVersion);
00050      QStringList newList = QStringList::split(".", newVersion);
00051      int minLength = QMIN(oldList.count(),newList.count());
00052      for(int i = 0; i< minLength;++i){
00053       if(newList[i] > oldList[i]) return true;
00054      }
00055      if(newList.count() > oldList.count()) return true;
00056      else return false;
00057     };
00058 
00063     static int getNbLines(QString path);
00064     
00069     static void createBackup(QString path);
00070 };
00071 
00072 #endif

Generated on Mon Sep 17 20:47:31 2007 for NeuroScope by  doxygen 1.5.1