mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 18:37:08 +00:00
22 lines
472 B
C++
22 lines
472 B
C++
#ifndef CSM_DOC_STATE_H
|
|
#define CSM_DOC_STATE_H
|
|
|
|
namespace CSMDoc
|
|
{
|
|
enum State
|
|
{
|
|
State_Modified = 1,
|
|
State_Locked = 2,
|
|
State_Operation = 4,
|
|
State_Running = 8,
|
|
|
|
State_Saving = 16,
|
|
State_Verifying = 32,
|
|
State_Compiling = 64, // not implemented yet
|
|
State_Searching = 128, // not implemented yet
|
|
State_Loading = 256 // pseudo-state; can not be encountered in a loaded document
|
|
};
|
|
}
|
|
|
|
#endif
|