All Classes Functions Variables Typedefs Friends Pages
IRunnable.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IRUNNABLE_H__GLYMPSE__
8 #define IRUNNABLE_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct IRunnable : public ICommon
17 {
21  public: virtual void run() = 0;
22 };
23 
24 /*C*/typedef O< IRunnable > GRunnable;
25 
26 }
27 
28 #endif // !IRUNNABLE_H__GLYMPSE__