diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 10:42:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 10:42:46 +0200 |
commit | a9d527ffd7e4a2222d5e80c8110f092af0cb5a74 (patch) | |
tree | cd190434be960f8bbb8547619b8b97265d844ed9 /tracer/pragma/driver.cxx | |
parent | c85f0af82c3abf2e7d2dfa76351a59d9884395c0 (diff) |
Change pragma syntax
Change odb pragma namespace to db. Use qualifiers (object, value, and member)
to specify type/member name. Add support for mapping C++ types to db types.
Diffstat (limited to 'tracer/pragma/driver.cxx')
-rw-r--r-- | tracer/pragma/driver.cxx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tracer/pragma/driver.cxx b/tracer/pragma/driver.cxx new file mode 100644 index 0000000..c227d4e --- /dev/null +++ b/tracer/pragma/driver.cxx @@ -0,0 +1,26 @@ +// file : tracer/pragma/driver.cxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test #pragma db parsing. +// + +#include <memory> +#include <cassert> +#include <iostream> + +#include <odb/exceptions.hxx> +#include <odb/transaction.hxx> +#include <odb/tracer/database.hxx> + +#include "test.hxx" +#include "test-odb.hxx" + +using namespace std; +using namespace odb; + +int +main () +{ +} |