diff options
Diffstat (limited to 'mapping/database.hxx')
-rw-r--r-- | mapping/database.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mapping/database.hxx b/mapping/database.hxx index d668b89..e0b2ed4 100644 --- a/mapping/database.hxx +++ b/mapping/database.hxx @@ -3,9 +3,12 @@ // copyright : not copyrighted - public domain // -// Create concrete database based on the DATABASE_* macros. +// Create concrete database instance based on the DATABASE_* macros. // +#ifndef DATABASE_HXX +#define DATABASE_HXX + #include <string> #include <memory> // std::auto_ptr #include <cstdlib> // std::exit @@ -39,3 +42,5 @@ create_database (int& argc, char* argv[]) return auto_ptr<database> (new mysql::database (argc, argv)); #endif } + +#endif // DATABASE_HXX |