123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #import <UIKit/UIKit.h>
- #import "XLFormViewController.h"
- #import "CCTemplates.h"
- @protocol CCContoCorrenteDelegate <NSObject>
- - (void)readFolderWithForced:(BOOL)forced serverUrl:(NSString *)serverUrl;
- @end
- @interface CCContoCorrente : XLFormViewController
- @property(nonatomic, weak) id <CCContoCorrenteDelegate> delegate;
- - (id)initWithDelegate:(id <CCContoCorrenteDelegate>)delegate fileName:(NSString *)fileName uuid:(NSString *)uuid fileID:(NSString *)fileID isLocal:(BOOL)isLocal serverUrl:(NSString *)serverUrl;
- @property (nonatomic, strong) NSString *fileName;
- @property (nonatomic, strong) NSString *uuid;
- @property (nonatomic, strong) NSString *rev;
- @property (nonatomic, strong) NSString *fileID;
- @property (nonatomic, strong) NSString *serverUrl;
- @property BOOL isLocal;
- @end
|