// file : common/template/test.hxx // license : GNU GPL v2; see accompanying LICENSE file #ifndef TEST_HXX #define TEST_HXX #include #include #pragma db object struct object { object (unsigned long id, const std::string& str) : id_ (id), str_ (str) { } object () { } #pragma db id unsigned long id_; std::string str_; }; #endif // TEST_HXX