mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 07:56:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef MWGUI_JOURNAL_H
 | 
						|
#define MWGUI_JOURNAL_H
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#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 () {};
 | 
						|
 | 
						|
        /// show/hide the journal window
 | 
						|
        virtual void setVisible (bool newValue) = 0;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |