source: trunk/lib/Directory.cc @ 7

Last change on this file since 7 was 7, checked in by Jari Häkkinen, 18 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
Line 
1// $Id: Directory.cc 7 2005-12-30 06:41:11Z jari $
2
3#include "Directory.h"
4#include "Node.h"
5
6namespace theplu{
7namespace 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.