OSDN Git Service

Add Merge, new branch, new tag Dialog
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / RevisionGraph / FullGraph.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "FullGraphNode.h"\r
22 \r
23 class CFullGraph\r
24 {\r
25 private:\r
26 \r
27     CFullGraphNode::CFactory nodeFactory;\r
28 \r
29     /// the graph is actually a tree\r
30 \r
31     CFullGraphNode* root;\r
32     size_t nodeCount;\r
33 \r
34 public:\r
35 \r
36     /// construction / destruction\r
37 \r
38     CFullGraph(void);\r
39     ~CFullGraph(void);\r
40 \r
41     /// modification\r
42 \r
43     CFullGraphNode* Add ( const CDictionaryBasedTempPath& path\r
44                         , revision_t revision\r
45                         , CNodeClassification classification\r
46                         , CFullGraphNode* source);\r
47 \r
48     void Replace ( CFullGraphNode* toReplace\r
49                  , CFullGraphNode::CCopyTarget*& toMove\r
50                  , CNodeClassification newClassification);\r
51 \r
52     /// member access\r
53 \r
54     CFullGraphNode* GetRoot();\r
55     const CFullGraphNode* GetRoot() const;\r
56 \r
57     size_t GetNodeCount() const;\r
58 };\r
59 \r
60 /// member access\r
61 \r
62 inline const CFullGraphNode* CFullGraph::GetRoot() const\r
63 {\r
64     return root;\r
65 }\r
66 \r
67 inline CFullGraphNode* CFullGraph::GetRoot()\r
68 {\r
69     return root;\r
70 }\r
71 \r
72 inline size_t CFullGraph::GetNodeCount() const\r
73 {\r
74     return nodeCount;\r
75 }\r