aboutsummaryrefslogtreecommitdiff
path: root/odb/generator.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-03-21 08:36:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:50:56 +0200
commit8d89bf37dd4ef3cb7373e1841ff57a53916fff0d (patch)
tree704b7de0338eba0e008a96a09b6d57e86846d1b1 /odb/generator.hxx
parent68ff21c56fb287790440208907ad2a851a108f89 (diff)
Polymorphic inheritance support
Diffstat (limited to 'odb/generator.hxx')
-rw-r--r--odb/generator.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/odb/generator.hxx b/odb/generator.hxx
index 4911883..5a1bbdf 100644
--- a/odb/generator.hxx
+++ b/odb/generator.hxx
@@ -6,6 +6,7 @@
#define ODB_GENERATOR_HXX
#include <odb/options.hxx>
+#include <odb/features.hxx>
#include <odb/semantics/unit.hxx>
class generator
@@ -14,7 +15,10 @@ public:
class failed {};
void
- generate (options const&, semantics::unit&, semantics::path const&);
+ generate (options const&,
+ features&,
+ semantics::unit&,
+ semantics::path const&);
generator () {}