123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //---------------------------------------------------------------------------
- #ifndef ServerPathH
- #define ServerPathH
- //---------------------------------------------------------------------------
- class CServerPath
- {
- public:
- BOOL AddSubdir(CString subdir);
- const BOOL IsEmpty() const;
- CServerPath GetParent() const;
- BOOL HasParent() const;
- CString GetLastSegment() const;
- CServerPath();
- CServerPath(CString path, bool trim = true);
- CServerPath(CString path, int nServerType, bool trim = true);
- CServerPath(const CServerPath & path);
- virtual ~CServerPath();
- void SetServer(const t_server & server);
- BOOL SetPath(CString & newpath, BOOL bIsFile);
- BOOL SetPath(CString newpath);
- const CString GetPath() const;
- const CString GetPathUnterminated() const;
- CServerPath & operator=(const CServerPath & op);
- const bool operator==(const CServerPath & op) const;
- const bool operator!=(const CServerPath & op) const;
- CString FormatFilename(CString fn, bool omitPath = false) const;
- protected:
- BOOL m_bEmpty;
- std::list<CString> m_Segments;
- typedef std::list<CString>::iterator tIter;
- typedef std::list<CString>::const_iterator tConstIter;
- CString m_Prefix;
- int m_nServerType;
- private:
- const CString DoGetPath(bool unterminated) const;
- };
- //---------------------------------------------------------------------------
- #endif // ServerPathH
|