Changeset 9 for trunk/lib/File.h
- Timestamp:
- Dec 30, 2005, 9:24:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/File.h
r7 r9 19 19 /// @brief Default Constructor 20 20 /// 21 File(const std::string& name, Node*); 22 21 inline File(const std::string& path) : Node(path), binary_(false) {} 22 23 23 /// 24 24 /// Parsing out information from svn repository … … 29 29 30 30 private: 31 /// 32 /// @brief Copy Constructor 33 /// 34 File(const File& c);31 /// 32 /// @brief Copy Constructor, not implemented 33 /// 34 File(const File&); 35 35 36 36 ///
Note: See TracChangeset
for help on using the changeset viewer.