Ignore:
Timestamp:
2000-09-05T03:30:48+12:00 (24 years ago)
Author:
cs025
Message:

Further changes for uninstaller

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/FilePath.h

    r1397 r1498  
    88        string path;            // full path of this item
    99    bool     is_aRoot;  // indicates whether this directory/file is a file root
     10    void   _init(string path, string subPath);
    1011    public:
    1112    FilePath();
     
    1314    FilePath(string filePath, string filePath2);
    1415    FilePath(int nPaths, ...);
     16    FilePath(FilePath &path, string subPath);
    1517    bool      equals(FilePath &path);
    1618    bool      equals(const char *path);
     
    2729    string      pathString();
    2830    bool operator==(const FilePath &b) { return this->path == b.path; }
     31    bool operator!=(const FilePath &b) { return this->path != b.path; }
    2932    bool operator<(const FilePath &b) { return this->path < b.path; }
    3033};
Note: See TracChangeset for help on using the changeset viewer.