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

信息检索与抽取

开发平台:

Unix_Linux

  1. /*
  2. Name:         ConcurrentGroup_test.h
  3. Description:  ConcurrentGroup_test is a subclass of ConcurrentGroup, it is 
  4.               used for testing ConcurrentGroup, but also subclasses
  5.       of it. 
  6. Test suite:   activity
  7. */
  8. #import <activity/ActionGroup.h>
  9. @interface ConcurrentGroup_test_c: ConcurrentGroup_c
  10. {
  11.   id *objects;         // storage for objects that are recieving action
  12.        // from ConcurrentGroup
  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