17 lines
447 B
C
17 lines
447 B
C
|
|
/**
|
||
|
|
* @file PAIConst.h
|
||
|
|
* @brief PAI常用常量的定义
|
||
|
|
*/
|
||
|
|
#ifndef PAI_FRAME_SYSUTILITY_CONST_H
|
||
|
|
#define PAI_FRAME_SYSUTILITY_CONST_H
|
||
|
|
#include "Turtle.h"
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
extern PAI_UTILS_EXPORT const std::string PAI_ENCODING;
|
||
|
|
extern PAI_UTILS_EXPORT const std::string PAI_HOME;
|
||
|
|
extern PAI_UTILS_EXPORT const char* PAI_NAME;
|
||
|
|
extern PAI_UTILS_EXPORT const char* LONG_TIME_FORMAT;
|
||
|
|
extern PAI_UTILS_EXPORT const char* SHORT_TIME_FORMAT;
|
||
|
|
|
||
|
|
#endif
|