blob: 3244d9e54cc959243c3b47fe184feb17af13a952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Copyright (c) 2022 Klemens Morgenstern (klemens.morgenstern@gmx.net)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_SQLITE_TEST_HPP
#define BOOST_SQLITE_TEST_HPP
#include <boost/test/unit_test.hpp>
struct query_helper
{
const char * query;
query_helper(const char * query) : query(query) {}
const char * operator--() const {return query;}
};
#endif //BOOST_SQLITE_TEST_HPP
|