1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 02:49:55 +00:00
openmw-tes3mp/apps/openmw/mwgui/journalwindow.hpp
Nathan Jeffords 8dad04eef1 hid JournalWindow behind IJournalWindow interface, and put its entire
implementation, class definition and all, into journalwindow.cpp
2013-04-24 20:20:00 -07:00

21 lines
484 B
C++

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