Changeset 1356 for trunk/lib/SVNproperty.h
- Timestamp:
- May 18, 2011, 1:59:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/SVNproperty.h
r1267 r1356 53 53 @return True if item is binary. 54 54 */ 55 inline bool binary(void) const { return binary_; }55 bool binary(void) const; 56 56 57 57 /** … … 65 65 @return True if item property svndigest:digest was set. 66 66 */ 67 inline bool svndigest_ignore(void) const { return svndigest_ignore_; }67 bool svndigest_ignore(void) const; 68 68 69 69 /** … … 78 78 SVNproperty object. 79 79 */ 80 inlineconst std::map<std::string, std::string>&81 properties(void) const { return property_; }80 //const std::map<std::string, std::string>& 81 //properties(void) const { return property_; } 82 82 83 83 private: 84 85 84 /// 86 85 /// @brief Copy Constructor, not implemented. … … 89 88 90 89 bool binary_; 91 std::map<std::string,std::string> property_;90 bool svncopyright_ignore_; 92 91 bool svndigest_ignore_; 93 92 };
Note: See TracChangeset
for help on using the changeset viewer.