// file : mysql/truncation/test.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST_HXX
#define TEST_HXX
#include <string>
#include <odb/core.hxx>
#pragma db object table ("test")
struct object1
{
object1 (unsigned long id)
: id_ (id)
{
}
object1 ()
{
}
#pragma db id
unsigned long id_;
std::string str_;
};
#pragma db object table ("test")
struct object2
{
object2 (unsigned long id)
: id_ (id)
{
}
object2 ()
{
}
#pragma db id
unsigned long id_;
std::string str_;
};
#endif // TEST_HXX