32 lines
673 B
C
32 lines
673 B
C
#ifndef __IVRUILTS__H__
|
||
#define __IVRUILTS__H__
|
||
#include "VrDateUtils.h"
|
||
#include "VrFileUtils.h"
|
||
#include "VrTimeUtils.h"
|
||
#include "VrCodeFormatUtils.h"
|
||
#include "VrMD5Utils.h"
|
||
#include "VrStringUtils.h"
|
||
#include "VrNumUtils.h"
|
||
#include "VrLog.h"
|
||
#include "VrShellUtils.h"
|
||
#include "VrNetUtils.h"
|
||
#include "VrDebugTime.h"
|
||
#include "VrNTPUtils.h"
|
||
#include "../crc/checksum.h"
|
||
#include "../ini/SimpleIni.h"
|
||
|
||
#ifndef M_PI
|
||
#define M_PI 3.14159265358979323846
|
||
#endif
|
||
|
||
// getopt只在Windows平台下包含,其他平台使用系统自带的getopt
|
||
#ifdef _WIN32
|
||
#include "getopt.h"
|
||
#pragma comment(lib, "VrUtils.lib")
|
||
#endif // _WIN32
|
||
|
||
#endif
|
||
|
||
|
||
|