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

SourceForge.net Logo