Last change
on this file since 7 was
7,
checked in by Jari Häkkinen, 17 years ago
|
Fixed svn properties. Moved endo of namespace comments to correct line.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
371 bytes
|
Rev | Line | |
---|
[7] | 1 | // $Id: Directory.cc 7 2005-12-30 06:41:11Z jari $ |
---|
[4] | 2 | |
---|
| 3 | #include "Directory.h" |
---|
| 4 | #include "Node.h" |
---|
| 5 | |
---|
| 6 | namespace theplu{ |
---|
| 7 | namespace svnstat{ |
---|
| 8 | |
---|
| 9 | Directory::Directory(const std::string& name, Node* mother) |
---|
| 10 | : Node(name,mother) |
---|
| 11 | { |
---|
| 12 | } |
---|
| 13 | |
---|
| 14 | bool Directory::parse(void) |
---|
| 15 | { |
---|
| 16 | for_each(daughters_.begin(),daughters_.end(), std::mem_fun(&Node::parse)); |
---|
| 17 | return true; |
---|
| 18 | } |
---|
| 19 | |
---|
| 20 | }} // end of namespace svnstat and namespace theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.