Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Directory.cc
r75 r79 66 66 stats_.reset(); 67 67 68 // Directories give no contribution to statistics. 68 69 for (NodeIterator i=daughters_.begin(); i!=daughters_.end(); i++) 69 70 stats_ += (*i)->parse(verbose); -
trunk/lib/Node.cc
r74 r79 11 11 namespace theplu{ 12 12 namespace svnstat{ 13 14 Node::Node(const std::string& path, const std::string& output)15 : path_(path)16 {17 output_name_ = output + name();18 }19 13 20 14 -
trunk/lib/Node.h
r74 r79 22 22 /// @brief Constructor 23 23 /// 24 Node(const std::string& path, const std::string& output=""); 24 Node(const std::string& path, const std::string& output="") : path_(path) 25 { output_name_ = output + name(); } 25 26 26 27 ///
Note: See TracChangeset
for help on using the changeset viewer.