📄 types.hpp
字号:
/* LiteSQL * * By Tero Laitinen * * See LICENSE for copyright information. */#ifndef _litesql_types_hpp#define _litesql_types_hpp#include <string>#include <vector>#include "litesql/utils.hpp"#include "litesql/except.hpp"/** \file types.hpp contains class Record and typedef Records */namespace litesql{class Database;/** SQL data row wrapper. */class Record : public std::vector<std::string>{public: Record() : std::vector<std::string>() {} /** defined for compatibility with Persistent */ Record(const Database & db, const Record& r ) { *this = r;}};/** shortcut */typedef std::vector<Record> Records;}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -