1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/openmw/mwgui/journalwindow.hpp

26 lines
586 B
C++

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