LiteSQL 0.3.10
utils.hpp
Go to the documentation of this file.
1/* LiteSQL
2 *
3 * The list of contributors at http://litesql.sf.net/
4 *
5 * See LICENSE for copyright information. */
6
9#ifndef _litesql_utils_hpp
10#define _litesql_utils_hpp
11#include <assert.h>
12#include "litesql/string.hpp"
13#include "litesql/split.hpp"
14namespace litesql {
15template <class T>
16const T& min(const T& v1, const T& v2) {
17 return (v1 < v2) ? (v1) : (v2);
18}
19}
20#endif
contains class Split
helpful string utils

SourceForge.net Logo