icinga2/lib/base/i2-base.hpp

80 lines
1.8 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef I2BASE_H
#define I2BASE_H
2012-03-28 13:24:49 +02:00
2012-05-18 22:21:28 +02:00
/**
2012-05-19 10:48:00 +02:00
* @mainpage Icinga Documentation
*
* Icinga implements a framework for run-time-loadable components which can
* pass messages between each other. These components can either be hosted in
* the same process or in several host processes (either on the same machine or
2012-05-19 10:48:00 +02:00
* on different machines).
*
* The framework's code critically depends on the following patterns:
*
2012-05-19 11:04:52 +02:00
* <list type="bullet">
* <item>Smart pointers
2012-05-19 10:48:00 +02:00
*
* The shared_ptr and weak_ptr template classes are used to simplify memory
* management and to avoid accidental memory leaks and use-after-free
* bugs.</item>
2012-05-19 10:48:00 +02:00
*
2012-05-19 11:04:52 +02:00
* <item>Observer pattern
2012-05-19 10:48:00 +02:00
*
* Framework classes expose events which other objects can subscribe to. This
* is used to decouple clients of a class from the class' internal
2012-05-19 11:04:52 +02:00
* implementation.</item>
* </list>
2012-05-18 22:21:28 +02:00
*/
/**
* @defgroup base Base class library
*
2012-05-19 10:48:00 +02:00
* The base class library implements commonly-used functionality like
* event handling for sockets and timers.
2012-05-18 22:21:28 +02:00
*/
#include <boost/config.hpp>
#if defined(__clang__) && __cplusplus >= 201103L
# undef BOOST_NO_CXX11_HDR_TUPLE
#endif
2012-04-03 15:47:32 +02:00
#ifdef _MSC_VER
# pragma warning(disable:4251)
2012-06-14 16:09:04 +02:00
# pragma warning(disable:4275)
2012-07-14 13:57:20 +02:00
# pragma warning(disable:4345)
#endif /* _MSC_VER */
#include "config.h"
#ifdef _WIN32
2014-05-25 16:23:35 +02:00
# include "base/win32.hpp"
#else
2014-05-25 16:23:35 +02:00
# include "base/unix.hpp"
#endif
#include <cstdlib>
#include <cstdarg>
#include <cstdio>
#include <cstring>
#include <cerrno>
2012-03-28 13:24:49 +02:00
2013-02-01 23:10:48 +01:00
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
2013-02-01 23:10:48 +01:00
2012-05-25 16:56:47 +02:00
#include <exception>
2012-05-26 23:12:46 +02:00
#include <stdexcept>
2012-05-25 14:40:10 +02:00
#if defined(__APPLE__) && defined(__MACH__)
2013-02-17 19:14:34 +01:00
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#define BOOST_BIND_NO_PLACEHOLDERS
#include <functional>
#endif /* I2BASE_H */