refs #628 Remove the old tuple system.

This commit is contained in:
Mathew Sutcliffe
2016-04-02 19:18:08 +01:00
parent 4bd4baa535
commit 0acb302c63
14 changed files with 23 additions and 1066 deletions

View File

@@ -15,7 +15,6 @@
#include "blackmiscexport.h"
#include "dbus.h"
#include "metaclass.h"
#include "tuple.h"
#include "json.h"
#include "compare.h"
#include "variant.h"
@@ -68,7 +67,7 @@ namespace BlackMisc
* \tparam Base The class which this one shall inherit from (default is CEmpty,
* but this can be changed to create a deeper inheritance hierarchy).
*/
template <class Derived, class Base /*= CEmpty*/> class CValueObject :
template <class Derived, class Base = CEmpty> class CValueObject :
public Base,
public Mixin::MetaType<Derived>,
public Mixin::HashByMetaClass<Derived>,