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

信息检索与抽取

开发平台:

Unix_Linux

  1. // Copyright (C) 1999, 2000 Swarm Development Group.  This library is distributed
  2. // without any warranty; without even the implied warranty of
  3. // merchantability or fitness for a particular purpose.  See file
  4. // COPYING for details and terms of copying.
  5. #import <objectbase/SwarmObject.h>
  6. @interface TestObject : SwarmObject 
  7. {
  8.   int var1;
  9.   int var2;
  10.   char char1;
  11. }
  12. - (int)getVar1;
  13. - (int)getVar2;
  14. - (char)getChar1;
  15. - method1: (int)a1;
  16. - method2: (int)a2;
  17. - method3: (char)a3;
  18. - printObject;
  19. @end