37 lines
548 B
C++
37 lines
548 B
C++
#ifndef A8_H
|
|
#define A8_H
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <list>
|
|
#include <set>
|
|
#include <tuple>
|
|
#include <memory>
|
|
#include <functional>
|
|
#include <initializer_list>
|
|
|
|
#include <a8/types.h>
|
|
#include <a8/list.h>
|
|
#include <a8/xvalue.h>
|
|
#include <a8/xobject.h>
|
|
#include <a8/xparams.h>
|
|
#include <a8/timer_attacher.h>
|
|
|
|
#include <a8/strutils.h>
|
|
#include <a8/sysutils.h>
|
|
#include <a8/singleton.h>
|
|
|
|
namespace std
|
|
{
|
|
class thread;
|
|
class mutex;
|
|
class condition_variable;
|
|
};
|
|
|
|
#define NEW_NET
|
|
|
|
#endif
|