Split GetMember into GetMember (for handle) and GetDefaultMember (for store);

Split IMPLEMENT_REFLECTION macro to match

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@24 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2006-10-19 12:29:51 +00:00
parent 29d072e949
commit dc0ece358b
9 changed files with 160 additions and 82 deletions
+2 -2
View File
@@ -60,8 +60,8 @@ void Writer::handle(const Defaultable<T>& def) {
}
}
template <typename T>
void GetMember::handle(const Defaultable<T>& def) {
store(def());
void GetDefaultMember::handle(const Defaultable<T>& def) {
handle(def());
}
// ----------------------------------------------------------------------------- : EOF