LiteSQL
include
litesql
relation.hpp
Go to the documentation of this file.
1
/* LiteSQL
2
*
3
* The list of contributors at http://litesql.sf.net/
4
*
5
* See LICENSE for copyright information. */
6
7
8
#ifndef __litesql_relation_hpp
9
#define __litesql_relation_hpp
12
namespace
litesql {
14
template
<
class
T>
15
class
RelationHandle
{
16
protected
:
17
const
T* owner;
18
RelationHandle
(
const
T& o) : owner(&o) {}
19
};
20
21
}
22
23
#endif
litesql::RelationHandle
base class of relation handles attached to Persistent objects
Definition:
relation.hpp:15