CSamplesBaseViewController.h 985 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // CSamplesBaseViewController.h
  3. // ComPDFKit_Samples
  4. //
  5. // Copyright © 2014-2023 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. // This notice may not be removed from this file.
  11. //
  12. #import <UIKit/UIKit.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. @class CPDFDocument;
  15. @interface CSamplesBaseViewController : UIViewController
  16. @property (weak, nonatomic) IBOutlet UIButton *openfileButton;
  17. @property (weak, nonatomic) IBOutlet UILabel *explainLabel;
  18. @property (weak, nonatomic) IBOutlet UITextView *commandLineTextView;
  19. - (IBAction)buttonItemClick_run:(id)sender;
  20. - (IBAction)buttonItemClick_openFile:(id)sender;
  21. - (instancetype)initWithDocument:(CPDFDocument *)document;
  22. @end
  23. NS_ASSUME_NONNULL_END