mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-30 21:32:42 +00:00
6fb658daa4
(cherry picked from commit 6a9218ee07a81c9ca56faf8661c9d38e84ba3028)
22 lines
424 B
C++
22 lines
424 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_Merging = 64,
|
|
State_Searching = 128,
|
|
State_Loading = 256 // pseudo-state; can not be encountered in a loaded document
|
|
};
|
|
}
|
|
|
|
#endif
|