mirror of https://github.com/Icinga/icinga2.git
parent
95a38fac18
commit
634ef772c3
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
#include "base/i2-base.hpp"
|
#include "base/i2-base.hpp"
|
||||||
#include "base/value.hpp"
|
#include "base/value.hpp"
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace icinga
|
namespace icinga
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
#include "base/i2-base.hpp"
|
#include "base/i2-base.hpp"
|
||||||
#include "base/object.hpp"
|
#include "base/object.hpp"
|
||||||
#include "base/value.hpp"
|
#include "base/value.hpp"
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
namespace icinga
|
namespace icinga
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#define STRING_H
|
#define STRING_H
|
||||||
|
|
||||||
#include "base/i2-base.hpp"
|
#include "base/i2-base.hpp"
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -173,16 +174,12 @@ struct string_iless : std::binary_function<String, String, bool>
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
|
|
||||||
template <typename C> struct range_mutable_iterator;
|
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
struct range_mutable_iterator<icinga::String>
|
struct range_mutable_iterator<icinga::String>
|
||||||
{
|
{
|
||||||
typedef icinga::String::Iterator type;
|
typedef icinga::String::Iterator type;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename C> struct range_const_iterator;
|
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
struct range_const_iterator<icinga::String>
|
struct range_const_iterator<icinga::String>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue