25 lines
344 B
C
25 lines
344 B
C
|
//
|
||
|
// FluttifyMessageCodec.h
|
||
|
// FMDB
|
||
|
//
|
||
|
// Created by Yohom Bao on 2020/8/31.
|
||
|
//
|
||
|
|
||
|
#import <Flutter/Flutter.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface FluttifyReaderWriter : FlutterStandardReaderWriter
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface FluttifyWriter : FlutterStandardWriter
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface FluttifyReader : FlutterStandardReader
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|