Changeset 2481 for box/trunk/lib/backupclient/BackupStoreFilename.h
- Timestamp:
- 29/03/2009 14:51:24 (3 years ago)
- File:
-
- 1 edited
-
box/trunk/lib/backupclient/BackupStoreFilename.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/backupclient/BackupStoreFilename.h
r217 r2481 41 41 // 42 42 // -------------------------------------------------------------------------- 43 class BackupStoreFilename : public BackupStoreFilename_base43 class BackupStoreFilename /* : public BackupStoreFilename_base */ 44 44 { 45 private: 46 std::string mEncryptedName; 47 45 48 public: 46 49 BackupStoreFilename(); … … 72 75 }; 73 76 77 const std::string& GetEncodedFilename() const 78 { 79 return mEncryptedName; 80 } 81 82 bool operator==(const BackupStoreFilename& rOther) const 83 { 84 return mEncryptedName == rOther.mEncryptedName; 85 } 86 87 bool operator!=(const BackupStoreFilename& rOther) const 88 { 89 return mEncryptedName != rOther.mEncryptedName; 90 } 91 74 92 protected: 75 93 virtual void EncodedFilenameChanged(); 94 void SetEncodedFilename(const std::string &rEncoded) 95 { 96 mEncryptedName = rEncoded; 97 } 76 98 }; 77 99
Note: See TracChangeset
for help on using the changeset viewer.
