Mercurial > hg > Members > kono > Cerium
annotate include/TaskManager/SchedExit.h @ 134:92fcce4330f3
CreateSpan で、三角形を二つに割る時、
元々x軸に水平な辺を持っていると、辺に対して half_triangle をかけてしまい
暴走するので、その応急処置。詳しくは CreateSpan::half_triangle
author | gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 27 Nov 2008 16:10:55 +0900 |
parents | 5c194c71eca8 |
children | e19d2c9e85b0 6bb8725e60ae |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_EXIT |
2 #define INCLUDED_SCHED_EXIT | |
3 | |
109 | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | |
6 #endif | |
7 | |
42 | 8 #ifndef INCLUDED_SCHEDULER |
9 # include "Scheduler.h" | |
10 #endif | |
11 | |
12 #ifndef INCLUDED_SCHED_TASK_BASE | |
13 # include "SchedTaskBase.h" | |
14 #endif | |
15 | |
16 class SchedExit : public SchedTaskBase { | |
17 public: | |
109 | 18 BASE_NEW_DELETE(SchedExit); |
42 | 19 |
20 SchedTaskBase* next(Scheduler *, SchedTaskBase *); | |
21 }; | |
22 | |
23 #endif |