source: trunk/lib/File.h @ 9

Last change on this file since 9 was 9, checked in by Jari Häkkinen, 17 years ago

Started work with reading file structure.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 807 bytes
Line 
1// $Id: File.h 9 2005-12-30 08:24:00Z 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    inline File(const std::string& path) : Node(path), binary_(false) {}
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, not implemented
33    ///
34    File(const File&);
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.