AppCore
Loading...
Searching...
No Matches
qrcode.h
Go to the documentation of this file.
1#ifndef QRCODE_H
2#define QRCODE_H
3
4#include "EDrawObject.h"
5
6namespace EM
7{
8 namespace PrinterTemplate
9 {
10 class QRCode : public EDrawObject
11 {
12 public:
13 QRCode( const std::string &name );
14 ~QRCode();
15
16 virtual void Draw( float moveY );
17 virtual QRCode* Clone();
18
19 virtual void ReadXML( EXMLNode* node );
20 virtual long Save( EXMLNode* node );
21
22 private:
23 class DataClass;
24 DataClass *d;
25 };
26 }
27}
28
29#endif // QRCODE_H
general draw object
Definition EDrawObject.h:30
Definition qrcode.h:11
virtual QRCode * Clone()
Definition qrcode.cpp:56
~QRCode()
Definition qrcode.cpp:30
virtual long Save(EXMLNode *node)
Definition qrcode.cpp:78
virtual void Draw(float moveY)
Definition qrcode.cpp:35
virtual void ReadXML(EXMLNode *node)
Definition qrcode.cpp:61
SYSTEM INCLUDES.
Definition CardFacadeManagerXML.h:7