forked from teamnwah/openmw-tes3coop
8dad04eef1
implementation, class definition and all, into journalwindow.cpp
21 lines
484 B
C++
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
|