21 lines
444 B
Objective-C
21 lines
444 B
Objective-C
// (c) 2017 Ekkehard Gentz (ekke) @ekkescorner
|
|
// my blog about Qt for mobile: http://j.mp/qt-x
|
|
// see also /COPYRIGHT and /LICENSE
|
|
|
|
#ifndef DOCVIEWCONTROLLER_HPP
|
|
#define DOCVIEWCONTROLLER_HPP
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "iosshareutils.h"
|
|
|
|
@interface DocViewController : UIViewController <UIDocumentInteractionControllerDelegate>
|
|
|
|
@property int requestId;
|
|
|
|
@property IosShareUtils *mIosShareUtils;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif // DOCVIEWCONTROLLER_HPP
|