row_template.h
来自「有关MYSQL的开源码」· C头文件 代码 · 共 39 行
H
39 行
#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 + =
减小字号Ctrl + -
显示快捷键?