Responder.h
上传用户:shenzhenrh
上传日期:2013-05-12
资源大小:2904k
文件大小:0k
源码类别:

信息检索与抽取

开发平台:

Unix_Linux

  1. /*
  2. Name:           Responder.h
  3. Description:    Responder is a simple class that keeps track of all of 
  4.                 calls to its methods.
  5. Test suite:     activity
  6. */               
  7. #import <objectbase/SwarmObject.h>
  8. extern int messages[10];
  9. extern int ids[10];
  10. extern int rtimes[10];
  11. extern void init_tables (void);
  12. @interface Responder: SwarmObject
  13. {
  14.   int Id;
  15. }
  16. + create: aZone withId: (int)id;
  17. - setId: (int)id;
  18. - (int)getId;
  19. - m1;
  20. - m2;
  21. - m3;
  22. - m4;
  23. - m5;
  24. - mId;
  25. - mTimeId;
  26. @end