Very simple draft of the Asset concept in model library

This commit is contained in:
Sam Gateau 2015-08-24 10:22:32 -07:00
parent d9e326258f
commit c9ddaf78a1

View file

@ -40,7 +40,7 @@ public:
}
~Table() {}
ID add(Version v, const T& element) {
ID add(const T& element, Version v = FINAL) {
switch (v) {
case DRAFT: {
_elements[DRAFT].push_back(element);