mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
18 lines
299 B
Objective-C
18 lines
299 B
Objective-C
//
|
|
// PicoWritable.h
|
|
// pico
|
|
//
|
|
// Created by bulldog on 13-2-26.
|
|
// Copyright (c) 2013 LeanSoft Technology. All rights reserved.
|
|
//
|
|
|
|
@protocol PicoWritable <NSObject>
|
|
|
|
// Convert object to binary data
|
|
-(NSData *)toData:(id)obj;
|
|
|
|
// Convert object to string
|
|
-(NSString *)toString:(id)obj;
|
|
|
|
@end
|