OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
scope.hpp
Go to the documentation of this file.
1 #ifndef CSM_WOLRD_SCOPE_H
2 #define CSM_WOLRD_SCOPE_H
3 
4 #include <string>
5 
6 namespace CSMWorld
7 {
8  enum Scope
9  {
10  // record stored in content file
12 
13  // record stored in project file
15 
16  // record that exists only for the duration of one editing session
18  };
19 
20  Scope getScopeFromId (const std::string& id);
21 }
22 
23 #endif
Scope
Definition: scope.hpp:8
Scope getScopeFromId(const std::string &id)
Definition: scope.cpp:7
Definition: scope.hpp:14
Definition: scope.hpp:11
Definition: scope.hpp:17