#ifndef MWGUI_JOURNAL_H #define MWGUI_JOURNAL_H #include namespace MWBase { class WindowManager; } namespace MWGui { struct IJournalViewModel; struct IJournalWindow { /// construct a new instance of the one JournalWindow implementation static IJournalWindow * create (std::shared_ptr Model); /// destroy this instance of the JournalWindow implementation virtual ~IJournalWindow () {}; /// show/hide the journal window virtual void setVisible (bool newValue) = 0; }; } #endif