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"
14 namespace litesql {
15 template <class T>
16 const T& min(const T& v1, const T& v2) {
17  return (v1 < v2) ? (v1) : (v2);
18 }
19 }
20 #endif
Definition: backend.hpp:14
contains class Split
helpful string utils

SourceForge.net Logo