CustomiOSApi  1.04
 All Classes Functions Enumerations Enumerator Pages
/Users/sviluppo/Documents/sviluppo/CustomiOSApi/CustomiOSApi/CustomiOSApi/PrinterStatus.h
1 //
2 // PrinterStatus.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 08/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #ifndef PRINTERSTATUS_H_
10 #define PRINTERSTATUS_H_
11 
12 #import <Foundation/Foundation.h>
13 
17 @interface PrinterStatus : NSObject
18 {
19  @public
20 
21  @protected
22 
23  @private
24 }
25 
31 -(id)initWithStatus:(long)lStatusPrinter;
32 
38 - (Boolean) IsEqual:(PrinterStatus*) printerstatus;
39 
40 //**************************************
41 //Status Vars: BYTE 1
42 //**************************************
43 
48 -(Boolean) StsNOPAPER;
53 -(Boolean) StsNEARENDPAP;
58 -(Boolean) StsTICKETOUT;
59 
60 //**************************************
61 //Status Vars: BYTE 2
62 //**************************************
63 
68 -(Boolean) StsNOHEAD;
73 -(Boolean) StsNOCOVER;
78 -(Boolean) StsSPOOLING;
83 -(Boolean) StsPAPERROLLING;
88 -(Boolean) StsLFPRESSED;
93 -(Boolean) StsFFPRESSED;
94 
95 //**************************************
96 //Status Vars: BYTE 3
97 //**************************************
98 
103 -(Boolean) StsOVERTEMP;
108 -(Boolean) StsHLVOLT;
113 -(Boolean) StsPAPERJAM;
114 
115 //**************************************
116 //Status Vars: BYTE 4
117 //**************************************
118 
123 -(Boolean) StsCUTERROR;
128 -(Boolean) StsRAMERROR;
133 -(Boolean) StsEEPROMERROR;
134 
135 
136 @end
137 
138 #endif