blob: 94c4d10626b884541f82ed7d312cadf5a829bdb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// file : common/schema/embedded/order/test2.hxx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST2_HXX
#define TEST2_HXX
#include <odb/core.hxx>
#include "test1.hxx"
#pragma db object
struct derived: base
{
int num;
};
#endif // TEST2_HXX
|