annotate example/renew_task/spe/SpeProfile.h @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents 4f5c64e713c7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
192
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
1 class SpeProfile {
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
2 public:
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
3 SpeProfile(void);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
4
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
5 unsigned int profile;
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
6
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
7 void ProfStart(void);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
8 void ProfStop(void);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
9 void ProfPrint(void);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
10 unsigned int ProfGet(void);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
11 void ProfPrint(unsigned int time);
4f5c64e713c7 add example/renew_task
gongo@localhost.localdomain
parents:
diff changeset
12 };