Skip to content

Commit aeaf215

Browse files
committed
Add comments
1 parent 0cc03a9 commit aeaf215

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# History and backup files
1818
__history/
1919
__recovery/
20+
__astcache/
2021
*.~*
2122

2223
# Castalia statistics file

GitRepository.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#include <System.hpp>
66
#include <System.JSON.hpp>
77
//---------------------------------------------------------------------------
8+
/**
9+
* User.
10+
*/
811
class TUser : public System::TObject
912
{
1013
typedef System::TObject inherited;
@@ -16,6 +19,9 @@ class TUser : public System::TObject
1619
String Login;
1720
};
1821

22+
/**
23+
* Repository.
24+
*/
1925
class TRepository : public System::TObject
2026
{
2127
typedef System::TObject inherited;
@@ -40,6 +46,9 @@ class TRepository : public System::TObject
4046
String Homepage;
4147
};
4248

49+
/**
50+
* Issue.
51+
*/
4352
class TIssue : public System::TObject
4453
{
4554
typedef System::TObject inherited;
@@ -54,6 +63,9 @@ class TIssue : public System::TObject
5463
int Number;
5564
};
5665

66+
/**
67+
* Organization.
68+
*/
5769
class TOrganization : public System::TObject
5870
{
5971
typedef System::TObject inherited;

0 commit comments

Comments
 (0)