Changeset 330 for trunk/lib/Node.h
- Timestamp:
- May 18, 2007, 5:16:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Node.h
r303 r330 161 161 inline bool svndigest_ignore(void) const { return svndigest_ignore_; } 162 162 163 /** 164 \see SVNinfo::url(void) 165 */ 166 std::string url(void) const; 167 163 168 protected: 164 169 … … 195 200 }; 196 201 202 /** 203 \brief Functor class to compare pointers of Nodes 204 */ 197 205 struct NodePtrLess 198 206 { 207 /** 208 @return true if first and second are of same type (Directory or 209 File) and name of first is (alphabetically) less than name of 210 second; or if first is a Directory and second is a File. 211 */ 199 212 inline bool operator()(const Node* first, const Node* second) const 200 213 {
Note: See TracChangeset
for help on using the changeset viewer.