OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
importinfo.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_ESSIMPORT_IMPORTINFO_H
2 #define OPENMW_ESSIMPORT_IMPORTINFO_H
3 
4 #include <string>
5 
6 namespace ESM
7 {
8  class ESMReader;
9 }
10 
11 namespace ESSImport
12 {
13 
14  struct INFO
15  {
16  std::string mInfo;
17  std::string mActorRefId;
18 
19  void load(ESM::ESMReader& esm);
20  };
21 
22 }
23 
24 #endif
void load(ESM::ESMReader &esm)
Definition: importinfo.cpp:8
Definition: esmreader.hpp:21
std::string mInfo
Definition: importinfo.hpp:16
std::string mActorRefId
Definition: importinfo.hpp:17
Definition: importinfo.hpp:14