OpenMW
apps/opencs/model/doc/state.hpp
Go to the documentation of this file.
00001 #ifndef CSM_DOC_STATE_H
00002 #define CSM_DOC_STATE_H
00003 
00004 namespace CSMDoc
00005 {
00006         enum State
00007         {
00008                 State_Modified = 1,
00009                 State_Locked = 2,
00010                 State_Operation = 4,
00011 
00012                 State_Saving = 8,
00013                 State_Verifying = 16,
00014                 State_Compiling = 32, // not implemented yet
00015                 State_Searching = 64 // not implemented yet
00016         };
00017 }
00018 
00019 #endif