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

信息检索与抽取

开发平台:

Unix_Linux

  1. /*
  2. Name:         ActionGroup_test.h
  3. Description:  ActionGroup_test is a subclass of ActionGroup, it is 
  4.               used for testing ActionGroup, but also subclasses
  5.       of it. 
  6. Test suite:   activity
  7. */
  8. #import <activity/ActionGroup.h>
  9. @interface ActionGroup_test_c: ActionGroup_c
  10. {
  11.   id *objects;         // storage for objects that are recieving action
  12.        // from ActionGroup
  13.   int counter;
  14.   int numberOfObjects; // number of objects in the object storage;
  15. }
  16. #include "Holder.h"
  17. - (void)describe: outputCharStream;
  18. - (void)describeForEach: outputCharStream;
  19. @end