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

📄 utils.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. *//** \file utils.hpp    includes string.hpp and split.hpp */#ifndef _litesql_utils_hpp#define _litesql_utils_hpp#include <assert.h>#include "litesql/string.hpp"#include "litesql/split.hpp"namespace litesql {template <class T>const T& min(const T& v1, const T& v2) {    return (v1 < v2) ? (v1) : (v2);}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -