annotate include/TaskManager/SpeExit.h @ 70:178459e03f5c
*** empty log message ***
author |
gongo |
date |
Mon, 18 Feb 2008 01:13:00 +0900 |
parents |
2356238ebea7 |
children |
|
rev |
line source |
3
|
1 #ifndef INCLUDED_SPE_EXIT
|
|
2 #define INCLUDED_SPE_EXIT
|
|
3
|
|
4 #ifndef INCLUDED_SPEMANAGER
|
|
5 # include "SpeManager.h"
|
|
6 #endif
|
|
7
|
|
8 class SpeExit : public SpeTaskBase {
|
|
9 public:
|
|
10 /* constructor */
|
|
11 SpeExit(void) {}
|
|
12
|
|
13 /* variables */
|
|
14
|
|
15 /* functions */
|
|
16 SpeTaskBase* next(SpeManager *, SpeTaskBase *);
|
|
17 };
|
|
18
|
|
19 #endif
|