diff options
Diffstat (limited to 'server/src/transaction.h')
-rw-r--r-- | server/src/transaction.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/server/src/transaction.h b/server/src/transaction.h index daf0de3..4cc633d 100644 --- a/server/src/transaction.h +++ b/server/src/transaction.h @@ -34,21 +34,12 @@ class Request { public: std::string macro; + std::string course; }; typedef std::vector< Request > Requests; - -/* -class Field { -public: - std::string name; - std::string value; -}; -*/ -//typedef std::vector< Field > Fields; typedef std::map< std::string, std::string > Fields; - class Commit { public: std::string macro; @@ -57,7 +48,6 @@ public: }; typedef std::vector< Commit > Commits; - class Transaction { public: std::string user; @@ -68,5 +58,4 @@ public: Commits commits; }; - #endif/*__PRACRO_TRANSACTION_H__*/ |