📄 row_template.h
字号:
#ifndef MYSQLCPPAPI_row_template_h#define MYSQLCPPAPI_row_template_h#include "mysqlcppapi/fields/FieldInfo.h"#include <vector>#include <string>namespace mysqlcppapi{typedef std::vector<FieldInfo> FieldNames;template <class ThisType, class Res>class RowTemplate{public: RowTemplate() { } virtual ~RowTemplate() { } virtual const Res& parent() const = 0; };// RowTemplate} //namespace#endif //MYSQLCPPAPI_row_template_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -