source: trunk/lib/File.h @ 7

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: 778 bytes
Line 
1// $Id: File.h 7 2005-12-30 06:41:11Z jari $
2
3#ifndef _theplu_svnstat_file_
4#define _theplu_svnstat_file_
5
6#include "Node.h"
7
8#include <map>
9#include <string>
10#include <vector>
11
12namespace theplu{
13namespace svnstat{
14
15  class File : public Node
16  {
17  public:
18    ///
19    /// @brief Default Constructor
20    ///
21    File(const std::string& name, Node*);
22   
23    ///
24    /// Parsing out information from svn repository
25    ///
26    /// @return true if succesful
27    ///
28    bool parse(void);
29
30  private:
31    ///
32    /// @brief Copy Constructor
33    ///
34    File(const File& c);
35
36    ///
37    /// @brief Parsing svn blame output
38    ///
39    /// @return true if parsing is succesful
40    ///
41    bool blame(void) const;
42   
43   
44    bool binary_;
45 
46  };
47
48}} // end of namespace svnstat and namespace theplu
49
50#endif
51
52
Note: See TracBrowser for help on using the repository browser.