server/db/src/stdafx.h

25 lines
458 B
C
Raw Normal View History

2022-03-05 12:44:06 +02:00
#ifndef __INC_METiN_II_DBSERV_STDAFX_H__
#define __INC_METiN_II_DBSERV_STDAFX_H__
2022-03-05 19:59:39 +02:00
#include <libthecore/include/stdafx.h>
2022-03-05 12:44:06 +02:00
#ifndef __WIN32__
#include <semaphore.h>
#else
#define isdigit iswdigit
#define isspace iswspace
#endif
2022-03-05 19:59:39 +02:00
#include <common/length.h>
#include <common/tables.h>
#include <common/singleton.h>
#include <common/utils.h>
#include <common/stl.h>
#include <common/service.h>
2022-03-05 12:44:06 +02:00
#include <memory>
#include <algorithm>
#include <iostream>
2022-03-05 12:44:06 +02:00
#endif