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>
14namespace litesql {
16template <class T>
17class RelationHandle {
18protected:
19 const T* owner;
20 RelationHandle(const T& o) : owner(&o) {}
21};
22
23}
24
25#endif

SourceForge.net Logo