mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 04:17:43 +00:00
13 lines
144 B
C
13 lines
144 B
C
|
#ifndef DIRECTION_H
|
||
|
#define DIRECTION_H
|
||
|
|
||
|
///
|
||
|
enum LyXDirection {
|
||
|
///
|
||
|
LYX_DIR_LEFT_TO_RIGHT = 1,
|
||
|
///
|
||
|
LYX_DIR_RIGHT_TO_LEFT = -1
|
||
|
};
|
||
|
|
||
|
#endif
|