blob: 89e289750cce16a706f8cd6012a6c985ff6a7d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// file : libcommon/common/common.txx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
// We have to use this helper function instead of just checking which
// database is used because the DATABASE_* macro may not be defined
// in a project that includes this header.
//
LIBCOMMON_EXPORT bool
size_available ();
template <typename T>
std::size_t
size (odb::result<T>& r)
{
if (size_available ())
return r.size ();
else
{
std::size_t n (0);
for (typename odb::result<T>::iterator i (r.begin ()); i != r.end (); ++i)
n++;
return n;
}
}
|