aboutsummaryrefslogtreecommitdiff
path: root/odb/schema-catalog-impl.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-07-05 18:39:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-07-05 18:39:09 +0200
commit72f0237f3310a69fd566f1d2c25ca805f677199a (patch)
treedae417dd3216f20be7e2c75aacd85ccc7ba0d97f /odb/schema-catalog-impl.hxx
parentafa56605aca5021c5aab2fbe70cdfb81f863206f (diff)
Add support for multi-pass database schema generation
Diffstat (limited to 'odb/schema-catalog-impl.hxx')
-rw-r--r--odb/schema-catalog-impl.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/odb/schema-catalog-impl.hxx b/odb/schema-catalog-impl.hxx
index 782536a..51a4902 100644
--- a/odb/schema-catalog-impl.hxx
+++ b/odb/schema-catalog-impl.hxx
@@ -35,7 +35,8 @@ namespace odb
//
struct LIBODB_EXPORT schema_catalog_entry
{
- schema_catalog_entry (const char* name, void (*entry) (database&));
+ schema_catalog_entry (const char* name,
+ bool (*entry) (database&, unsigned short pass));
};
}