mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
21 lines
443 B
C++
21 lines
443 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_Saving = 8,
|
|
State_Verifying = 16,
|
|
State_Compiling = 32, // not implemented yet
|
|
State_Searching = 64, // not implemented yet
|
|
State_Loading = 128 // pseudo-state; can not be encountered in a loaded document
|
|
};
|
|
}
|
|
|
|
#endif
|