From 8d89bf37dd4ef3cb7373e1841ff57a53916fff0d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 21 Mar 2012 08:36:21 +0200 Subject: Polymorphic inheritance support --- odb/features.hxx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 odb/features.hxx (limited to 'odb/features.hxx') diff --git a/odb/features.hxx b/odb/features.hxx new file mode 100644 index 0000000..0468acb --- /dev/null +++ b/odb/features.hxx @@ -0,0 +1,24 @@ +// file : odb/features.hxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v3; see accompanying LICENSE file + +#ifndef ODB_FEATURES_HXX +#define ODB_FEATURES_HXX + +#include // std::memset + +// Optional features used by client code that affect generated code. +// +struct features +{ + features () {std::memset (this, 0, sizeof (features));} + + bool tr1_pointer; + bool boost_pointer; + bool simple_object; + bool polymorphic_object; + bool no_id_object; + bool view; +}; + +#endif // ODB_FEATURES_HXX -- cgit v1.1