📄 relation.hpp
字号:
/* LiteSQL * * By Tero Laitinen * * See LICENSE for copyright information. */#ifndef __litesql_relation_hpp#define __litesql_relation_hpp#include <vector>#include <string>/** \file relation.hpp See \ref usage_using_relations */namespace litesql {/** base class of relation handles attached to Persistent objects */template <class T> class RelationHandle {protected: const T* owner; RelationHandle(const T& o) : owner(&o) {} };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -