OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
importjour.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_ESSIMPORT_IMPORTJOUR_H
2 #define OPENMW_ESSIMPORT_IMPORTJOUR_H
3 
4 #include <string>
5 
6 namespace ESM
7 {
8  class ESMReader;
9 }
10 
11 namespace ESSImport
12 {
13 
15  struct JOUR
16  {
17  // The entire journal, in HTML
18  std::string mText;
19 
20  void load(ESM::ESMReader& esm);
21  };
22 
23 }
24 
25 #endif
Definition: esmreader.hpp:21
std::string mText
Definition: importjour.hpp:18
Journal.
Definition: importjour.hpp:15
void load(ESM::ESMReader &esm)
Definition: importjour.cpp:8