Develop and Download Open Source Software

Browse Subversion Repository

Contents of /simulator/SimulatorManager.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: 627 byte(s)
using namespace beego

1 #ifndef SIMULATOR_MANAGER_H
2 #define SIMULATOR_MANAGER_H
3
4 /*!
5 \file
6 \brief シミュレータ管理
7
8 \author Satofumi KAMIMURA
9
10 $Id$
11
12 \todo 必要かどうか、なにをすべきかを検討する
13 */
14
15
16 namespace beego {
17 /*!
18 \brief シミュレータ管理
19 */
20 class SimulatorManager {
21 SimulatorManager(void);
22 SimulatorManager(const SimulatorManager& rhs);
23 SimulatorManager& operator = (const SimulatorManager& rhs);
24
25 struct pImpl;
26 const std::auto_ptr<pImpl> pimpl;
27
28 public:
29 ~SimulatorManager(void);
30 static SimulatorManager* getObject(void);
31
32 // !!! sleep の比率設定
33 };
34 };
35
36 #endif /* !SIMULATOR_MANAGER_H */

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