ec1fa36cb6
2007/10/19 14:53:11 obo 1.2.6.2: new line at EOF missing 2007/10/18 07:45:53 obo 1.2.6.1: #150903# unxmacxi support
20 lines
316 B
C++
Executable file
20 lines
316 B
C++
Executable file
#ifndef _XMLBUILDLISTDEF_HXX
|
|
#define _XMLBUILDLISTDEF_HXX
|
|
|
|
enum DepTypes
|
|
{
|
|
mdsimple,
|
|
mdalways,
|
|
mdforce
|
|
};
|
|
|
|
#define DEP_MD_SIMPLE 1;
|
|
#define DEP_MD_ALWAYS 2;
|
|
#define DEP_MD_FORCE 4;
|
|
|
|
static const char * DEP_MD_ALWAYS_STR = "md-always";
|
|
static const char * DEP_MD_FORCE_STR = "md-force";
|
|
|
|
#endif
|
|
|
|
|