16 lines
140 B
C
16 lines
140 B
C
|
|
#ifndef TIMELINE_GLOBALS_H
|
||
|
|
#define TIMELINE_GLOBALS_H
|
||
|
|
|
||
|
|
namespace TimeLine
|
||
|
|
{
|
||
|
|
|
||
|
|
enum DisplayState
|
||
|
|
{
|
||
|
|
RealTime,
|
||
|
|
Historical
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|