repo.or.cz
/
Widgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Getting the Gui to show gits files.
[Widgit.git]
/
Git
/
Branch.cs
blob
05e7f1583fb0765c6cf5f170635e286a4734d910
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
Text
;
4
5
namespace
Git
6
{
7
public class
Branch
8
{
9
protected string
m_name
;
10
public string
Name { get { return m_name; }
}
11
12
protected string
m_hash
;
13
public string
ID { get { return m_hash; }
}
14
15
public
Branch
(
string
name
)
16
{
17
m_name
=
name
;
18
}
19
}
20
}