annotate example/renew_task/spe/SpeProfile.h @ 540:c5a411c19e7e

merge
author tkaito@henri.cr.ie.u-ryukyu.ac.jp
date Wed, 21 Oct 2009 20:02:23 +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 };