CGEchoObject.h 548 B

12345678910111213141516171819202122232425
  1. /******************************************************************
  2. *
  3. * uEcho for ObjC
  4. *
  5. * Copyright (C) Satoshi Konno 2015
  6. *
  7. * This is licensed under BSD-style license, see file COPYING.
  8. *
  9. ******************************************************************/
  10. #import <Foundation/NSArray.h>
  11. #import <Foundation/NSString.h>
  12. typedef void uEchoObject;
  13. @interface CGEchoObject : NSObject {
  14. }
  15. - (id)initWithCObject:(uEchoObject*)cobj;
  16. - (NSArray*)properties;
  17. - (NSString*)name;
  18. - (int)code;
  19. - (Byte)group;
  20. - (Byte)class;
  21. - (Byte)instance;
  22. @end