1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-13 06:37:57 +00:00
OpenMW/apps/openmw/mwgui/journalwindow.hpp

27 lines
604 B
C++
Raw Normal View History

#ifndef MWGUI_JOURNAL_H
#define MWGUI_JOURNAL_H
#include <memory>
2013-02-09 18:44:20 +00:00
#include <boost/shared_ptr.hpp>
namespace MWBase { class WindowManager; }
namespace MWGui
{
struct JournalViewModel;
struct JournalWindow
{
/// construct a new instance of the one JournalWindow implementation
static JournalWindow * create (boost::shared_ptr <JournalViewModel> Model);
/// destroy this instance of the JournalWindow implementation
virtual ~JournalWindow () {};
2012-01-16 16:46:25 +00:00
/// show/hide the journal window
virtual void setVisible (bool newValue) = 0;
};
}
2012-03-22 14:23:23 +00:00
#endif