OSDN Git Service

Merge branch 'master' of o_ggy@git.sourceforge.jp:/gitroot/moflib/moflib
[moflib/moflib.git] / saisei-1.0 / rpg / rpg / oldcode / MyInterpreter.hpp~
1 #pragma once
2 #include "mof/InstructionSet.hpp"
3
4
5     
6 class MyInstructionSet : public mof::InstructionSet
7 {
8     
9 public:
10     MyInstructionSet( const boost::shared_ptr<mof::InputReceiver> & pInput );
11     virtual ~MyInterpreter();
12         
13      
14     virtual boost::shared_ptr<mof::MessageWidget> 
15     createMessageWidget( const mof::tstring& title , const mof::tstring& text );
16         
17     virtual void inactive( boost::shared_ptr<mof::MessageWidget>& message );
18    
19 private:
20     struct Impl;
21     boost::scoped_ptr<Impl> m_pImpl;
22 };
23