filename.h

00001 /***************************************************************************
00002  *   Copyright (C) 2005 by Fred Klaus                                      *
00003  *   frednet@web.de                                                        *
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 FILENAME_H
00021 #define FILENAME_H
00022 
00023 #include <string>
00024 
00025 using std::string;
00026 
00028 
00039 class FileName : public string
00040 {
00041 
00042 public:
00043         FileName() : string("") {}
00044         FileName(const string & filename) : string(filename) {}
00045         ~FileName() {}
00046 
00048         bool operator<(const FileName & fn);
00050         bool operator==(const FileName & fn);
00051 
00052         //FileName(const FileName & filename) : string(filename) {}
00053         //const FileName & operator=(const FileName & filename) {*this=filename; return *this;}
00054 
00055         string qualified() const; 
00056         string base(bool ext=true) const; 
00057         string path() const;
00058         string relpath() const;
00059         string ext(bool dot=true) const;
00060 
00063         void set(const string & filename) {*this=filename;}
00064         void setBase(const string & basename, bool ext=true); 
00065         void setExt(const string & extension);
00066         void setPath(const string & path);
00067 
00068         bool isValid();    
00069         bool isRelative(); 
00074         static void setCaseSensitiveCompare(bool csc) {mCaseSensitive = csc;}
00075 
00076 private:
00077 #ifdef _WIN32
00078         static const char delim() {return '\\';}
00079 #else
00080         static const char delim() {return '/';}
00081 #endif
00082 
00083         static bool mCaseSensitive;
00084 
00085 };
00086 
00087 
00088 #endif

Generated on Fri Mar 16 21:30:28 2007 for roland.kdevelop by  doxygen 1.5.0