cordova-plugin-printer/src/ios/APPPrinter.h

24 lines
501 B
C
Raw Normal View History

/**
2013-08-10 22:13:04 +08:00
* APPPrinter.h
* Cordova Printer Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
2013-08-10 22:13:04 +08:00
@interface APPPrinter : CDVPlugin {
}
// Prints the content
- (void) print:(CDVInvokedUrlCommand*)command;
// Find out whether printing is supported on this platform
- (void) isServiceAvailable:(CDVInvokedUrlCommand*)command;
@end