mirror of https://github.com/Icinga/icinga2.git
65 lines
1.1 KiB
C++
65 lines
1.1 KiB
C++
#ifndef I2BASE_H
|
|
#define I2BASE_H
|
|
|
|
#include <cstdlib>
|
|
#include <cstdarg>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <cassert>
|
|
#include <cerrno>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <typeinfo>
|
|
#include <map>
|
|
#include <list>
|
|
|
|
using namespace std;
|
|
|
|
#ifdef _MSC_VER
|
|
# include <memory>
|
|
# include <functional>
|
|
|
|
using namespace std::placeholders;
|
|
#else
|
|
# include <tr1/memory>
|
|
# include <tr1/functional>
|
|
|
|
using namespace std::tr1;
|
|
using namespace std::tr1::placeholders;
|
|
#endif
|
|
|
|
#define PLATFORM_WINDOWS 1
|
|
#define PLATFORM_UNIX 2
|
|
|
|
#ifdef _WIN32
|
|
# define I2_PLATFORM PLATFORM_WINDOWS
|
|
# include "win32.h"
|
|
#else
|
|
# define I2_PLATFORM PLATFORM_UNIX
|
|
# include "unix.h"
|
|
#endif
|
|
|
|
#include "mutex.h"
|
|
#include "condvar.h"
|
|
#include "thread.h"
|
|
#include "object.h"
|
|
#include "memory.h"
|
|
#include "delegate.h"
|
|
#include "event.h"
|
|
#include "timer.h"
|
|
#include "fifo.h"
|
|
#include "socket.h"
|
|
#include "tcpsocket.h"
|
|
#include "tcpclient.h"
|
|
#include "tcpserver.h"
|
|
#include "configobject.h"
|
|
#include "confighive.h"
|
|
#include "application.h"
|
|
#include "component.h"
|
|
|
|
#endif /* I2BASE_H */
|