⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 types.hpp

📁 LiteSQL is a C++ library that integrates C++ objects tightly to relational database and thus provide
💻 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 + -