relation.hpp
来自「LiteSQL is a C++ library that integrates」· HPP 代码 · 共 26 行
HPP
26 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?