mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
15 lines
212 B
Objective-C
15 lines
212 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Foundation;
|
|
|
|
|
|
@interface DataWrapper : NSObject
|
|
|
|
@property (strong) NSData *data;
|
|
@property (getter=isDataReady) bool dataReady;
|
|
|
|
@end
|