summaryrefslogtreecommitdiff
path: root/server/src/template.h
diff options
context:
space:
mode:
authordeva <deva>2008-10-10 10:21:20 +0000
committerdeva <deva>2008-10-10 10:21:20 +0000
commita703bf6f8dd6cd5a75202266f769e3ef2e42bcb2 (patch)
tree120486db55ca92bc9f2c5dd43412c7d7add5487b /server/src/template.h
parent9b697d2d3e34962385cd85a14d4cb14d5b1763ce (diff)
Made resume a standalone tag istead of an attribute of the macro tag.
Diffstat (limited to 'server/src/template.h')
-rw-r--r--server/src/template.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/server/src/template.h b/server/src/template.h
index d047712..0e016d4 100644
--- a/server/src/template.h
+++ b/server/src/template.h
@@ -51,6 +51,11 @@ public:
std::map< std::string, std::string > attributes;
};
+class Resume {
+public:
+ std::map< std::string, std::string > attributes;
+};
+
class Macro {
public:
std::vector< Query > queries;
@@ -58,6 +63,7 @@ public:
std::vector< Script > scripts;
Widget window;
std::map< std::string, std::string > attributes;
+ Resume resume;
};
class Course {