Develop and Download Open Source Software

Browse Subversion Repository

Contents of /simulator/SimulatorInterface.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 191 - (show annotations) (download) (as text)
Fri Jan 4 02:49:36 2008 UTC (16 years, 3 months ago) by satofumi
File MIME type: text/x-chdr
File size: 738 byte(s)
using namespace beego

1 #ifndef SIMULATOR_INTERFACE_H
2 #define SIMULATOR_INTERFACE_H
3
4 /*!
5 \file
6 \brief シミュレータクラスのインターフェース
7
8 \author Satofumi KAMIMURA
9
10 $Id$
11 */
12
13 namespace beego {
14 class TcpipCtrl;
15
16
17 /*!
18 \brief シミュレータ用インターフェース
19 */
20 class SimulatorInterface {
21 public:
22 virtual ~SimulatorInterface(void) {}
23
24 /*!
25 \brief シミュレータの起動
26
27 \attention 2回目以降の呼び出しは無視されなければならない
28 */
29 virtual void activate(void) = 0;
30
31 // !!! これは、何のためだっけ?
32 // シミュレーションの再生速度変化を一括管理する仕組みのためだった気がする
33 //virtual SimulatorInterface* getObject(void) = 0;
34
35 virtual void runMainTask(void) = 0;
36 };
37 };
38
39 #endif /* !SIMULATOR_INTERFACE_H */

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26