CustomiOSApi  1.04
 All Classes Functions Enumerations Enumerator Pages
PrnSupported.h
1 //
2 // PrnSupported.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 08/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "CommPort.h"
11 
12 //Hide it in the documentation
13 // @cond PRIVATE
14 @interface PrnSupported : NSObject
15 {
16  @public
17 
18  @protected
19 
20  @private
21 }
22 
23 + (CustomPrinter*) GetPrinterClass:(NSInteger)printerId :(CommPort*)commPort :(NSError**)error;
24 + (Boolean)IsThisPrinter:(NSInteger)printerId :(NSArray *)deviceIdList;
25 
26 @end