diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-05-06 10:50:30 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-05-06 10:50:30 +0200 |
commit | 2e64769507fd8468e836e1e657c703e8be2dc21a (patch) | |
tree | 06873bd7ab678d6cf04480d507aa535f9c914ed4 |
Create libodb repository
The files in this repository were initially tracked as part of the odb
project so refer for the previous change history to that repository.
-rw-r--r-- | odb/core.hxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/odb/core.hxx b/odb/core.hxx new file mode 100644 index 0000000..227dea7 --- /dev/null +++ b/odb/core.hxx @@ -0,0 +1,23 @@ +// file : odb/core.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_CORE_HXX +#define ODB_CORE_HXX + +#ifdef ODB_COMPILER +# define ODB_PRAGMA_IMPL(x) _Pragma (#x) +# define ODB_PRAGMA(x) ODB_PRAGMA_IMPL (odb x) +#else +# define PRAGMA_ODB(x) +#endif + +namespace odb +{ + class image + { + }; +} + +#endif // ODB_CORE_HXX |