DoorKeeper/include/implem/configuration.h
King_DuckZ e63aebe6e1 Some changes and the build is fine again.
This is a test version, design is still in progress.
2014-12-09 22:30:06 +01:00

24 lines
451 B
C++

#ifndef id2E81C803F1B94170B2C61A63D5020E08
#define id2E81C803F1B94170B2C61A63D5020E08
#if !defined(DK_COORD_SCALAR_TYPE)
# define DK_COORD_SCALAR_TYPE int
#endif
#if defined(__cplusplus)
# define MAKE_DK_NAME(a) a
namespace dk {
#else
# define MAKE_DK_NAME(a) dk_ ## a
#endif
typedef DK_COORD_SCALAR_TYPE MAKE_DK_NAME(CoordinateScalarType);
#if defined(__cplusplus)
} //namespace dk
#endif
#undef DK_COORD_SCALAR_TYPE
#undef MAKE_DK_NAME
#endif