diff options
Diffstat (limited to 'server/src/template.h')
-rw-r--r-- | server/src/template.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/template.h b/server/src/template.h index e3b030c..0884c08 100644 --- a/server/src/template.h +++ b/server/src/template.h @@ -54,7 +54,7 @@ public: std::map< std::string, std::string > attributes; }; -class MacroSequence { +class Course { public: std::vector< Macro > macroes; std::map< std::string, std::string > attributes; @@ -62,7 +62,7 @@ public: class Template { public: - MacroSequence macrosequence; + Course course; std::map< std::string, std::string > attributes; }; |