OpenMW
apps/opencs/model/filter/filter.hpp
Go to the documentation of this file.
00001 #ifndef CSM_FILTER_FILTER_H
00002 #define CSM_FILTER_FILTER_H
00003 
00004 #include <vector>
00005 #include <string>
00006 
00007 #include <components/esm/filter.hpp>
00008 
00009 namespace CSMFilter
00010 {
00012     struct Filter : public ESM::Filter
00013     {
00014         enum Scope
00015         {
00016             Scope_Project = 0, // per project
00017             Scope_Session = 1, // exists only for one editing session; not saved
00018             Scope_Content = 2 // embedded in the edited content file
00019         };
00020 
00021         Scope mScope;
00022     };
00023 }
00024 
00025 #endif