/****************************************************************** * * uEcho for ObjC * * Copyright (C) Satoshi Konno 2015 * * This is licensed under BSD-style license, see file COPYING. * ******************************************************************/ #import #import #import typedef void uEchoProperty; @interface CGEchoProperty : NSObject { } - (id)init; - (id)initWithCObject:(uEchoProperty*)cobj; - (NSString*)name; - (BOOL)setCode:(Byte)code; - (BOOL)setData:(Byte*)data size:(size_t)size; - (Byte)code; - (Byte*)data; - (size_t)size; - (BOOL)isReadRequired; - (BOOL)isWriteRequired; - (BOOL)isAnnoRequired; @end