Vesna
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GeneralExtraOperation.h
Go to the documentation of this file.
1 #ifndef GENERALEXTRAOPERATION_H
2 #define GENERALEXTRAOPERATION_H
3 
4 #include <QSharedPointer>
5 #include "appcore/chipcard/ECardExtraOperation.h"
6 
7 class GeneralExtraOperation : public EM::Devices::ECardExtraOperation
8 {
9 public:
10  virtual bool IsExtraOperation( EM::PT::EDataCollection *readDataCollection );
11 
12 protected:
13  GeneralExtraOperation( std::string extraOperationName );
14 
15  void SetExtraOperationGeneralCheck( int32_t extraOperationGeneralCheck );
16 
17 private:
19 
20  class DataClass;
21  QSharedPointer<DataClass> d;
22 
24 };
25 
26 #endif // GENERALEXTRAOPERATION_H
void SetExtraOperationGeneralCheck(int32_t extraOperationGeneralCheck)
Definition: GeneralExtraOperation.cpp:50
GeneralExtraOperation(std::string extraOperationName)
Definition: GeneralExtraOperation.cpp:45
Definition: GeneralExtraOperation.h:7
virtual bool IsExtraOperation(EM::PT::EDataCollection *readDataCollection)
Definition: GeneralExtraOperation.cpp:55