// file : common/query/one/test.hxx// license : GNU GPL v2; see accompanying LICENSE file#ifndef TEST_HXX#define TEST_HXX#include <string>#pragma db objectstruct object
{object(unsigned long id):id_(id){}object(){}#pragma db idunsigned long id_;
std::string str_;};#endif// TEST_HXX