Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / spirit / example / qi / json / json / detail / util_impl.hpp
1 /**
2  *   Copyright (C) 2012 ciere consulting, ciere.com
3  *   Copyright (C) 2011, 2012 Object Modeling Designs
4  *
5  *   Distributed under the Boost Software License, Version 1.0. (See accompanying
6  *   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7  *
8  *
9  */
10
11 #ifndef CIERE_JSON_UTIL_IMPL_HPP
12 #define CIERE_JSON_UTIL_IMPL_HPP
13
14 #include "../util.hpp"
15
16 namespace ciere { namespace json
17 {
18    namespace detail
19    {
20    }
21
22    /**
23     *  Returns true if elements of m match those value.
24     */
25    bool match( value const & value, value const & m )
26    {
27       return false;
28    }
29
30    /**
31     *  Results in : target = target + value
32     */
33    bool combine( value& target, value const & value )
34    {
35       return false;
36    }
37
38 }}
39
40 #endif // CIERE_JSON_UTIL_IMPL_HPP