CPDFStrikeoutViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // CPDFStrikeoutViewController.h
  3. // ComPDFKit_Tools
  4. //
  5. // Copyright © 2014-2024 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. #if __has_include(<ComPDFKit_Tools/ComPDFKit_Tools.h>)
  13. #import <ComPDFKit_Tools/ComPDFKit_Tools.h>
  14. #else
  15. #import "ComPDFKit_Tools.h"
  16. #endif
  17. NS_ASSUME_NONNULL_BEGIN
  18. @class CPDFStrikeoutViewController;
  19. @class CAnnotStyle;
  20. @protocol CPDFStrikeoutViewControllerDelegate <NSObject>
  21. @optional
  22. - (void)strikeoutViewController:(CPDFStrikeoutViewController *)strikeoutViewController annotStyle:(CAnnotStyle *)annotStyle;
  23. @end
  24. @interface CPDFStrikeoutViewController : CPDFAnnotationBaseViewController
  25. @property (nonatomic, weak) id<CPDFStrikeoutViewControllerDelegate> delegate;
  26. @end
  27. NS_ASSUME_NONNULL_END