summaryrefslogtreecommitdiff
path: root/odb/features.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/features.hxx')
-rw-r--r--odb/features.hxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/odb/features.hxx b/odb/features.hxx
deleted file mode 100644
index b300276..0000000
--- a/odb/features.hxx
+++ /dev/null
@@ -1,26 +0,0 @@
-// file : odb/features.hxx
-// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#ifndef ODB_FEATURES_HXX
-#define ODB_FEATURES_HXX
-
-#include <cstring> // 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 session_object;
- bool section;
- bool view;
-};
-
-#endif // ODB_FEATURES_HXX