mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 06:30:52 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@213 b9cfdab3-6d41-4d17-bbe4-086880011989
37 lines
433 B
C
37 lines
433 B
C
/* $Id$ */
|
|
/*!
|
|
* %file Mw/Constants.h
|
|
* %brief Constants
|
|
*/
|
|
#ifndef __MW_CONSTANTS_H__
|
|
#define __MW_CONSTANTS_H__
|
|
|
|
/*!
|
|
* %brief Direction enumeration
|
|
*/
|
|
enum MwDIRECTION {
|
|
MwNORTH = 0,
|
|
MwSOUTH,
|
|
MwEAST,
|
|
MwWEST
|
|
};
|
|
|
|
/*!
|
|
* %brief Orientation
|
|
*/
|
|
enum MwORIENTATION {
|
|
MwVERTICAL = 0,
|
|
MwHORIZONTAL
|
|
};
|
|
|
|
/*!
|
|
* %brief Alignment
|
|
*/
|
|
enum MwALIGNMENT {
|
|
MwALIGNMENT_CENTER = 0,
|
|
MwALIGNMENT_BEGINNING,
|
|
MwALIGNMENT_END,
|
|
};
|
|
|
|
#endif
|