LiteSQL
0.3.10
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
10
#include <vector>
11
#include <string>
14
namespace
litesql
{
16
template
<
class
T>
17
class
RelationHandle
{
18
protected
:
19
const
T* owner;
20
RelationHandle
(
const
T& o) : owner(&o) {}
21
};
22
23
}
24
25
#endif
litesql
Definition:
backend.hpp:14
litesql::RelationHandle
base class of relation handles attached to Persistent objects
Definition:
relation.hpp:17