00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #pragma once
00016 #include "ippCommand.h"
00017 #include <map>
00018
00019
00020
00021
00022
00023 class IPPDME_EXT_CLASS ippOnScanReportCommand : public ippCommand {
00024
00025 public:
00026
00027 enum Key {
00028
00029 ER = ipp::ER,
00030 IJK = ipp::_IJK,
00031 Q = ipp::Q,
00032 R = ipp::_R,
00033 X = ipp::_X,
00034 Y = ipp::_Y,
00035 Z = ipp::_Z,
00036 IJKAct = ipp::_IJKAct,
00037 ToolA = ipp::_A,
00038 ToolB = ipp::_B,
00039 ToolC = ipp::_C,
00040 };
00041
00042 ippOnScanReportCommand(
00043 unsigned int tgNum
00044 );
00045
00046 virtual ~ippOnScanReportCommand();
00047
00048 void setDefault();
00049
00050
00051
00052 void append(Key property);
00053
00054
00055
00056 int getNumberOfReportedValues() const;
00057
00058
00059
00060
00061 int getIndexOf(Key key) const;
00062
00063 bool getHasER() const;
00064 bool getHasIJK() const;
00065 bool getHasQ() const;
00066 bool getHasR() const;
00067 bool getHasX() const;
00068 bool getHasY() const;
00069 bool getHasZ() const;
00070 bool getHasToolA()const;
00071 bool getHasToolB()const;
00072 bool getHasToolC()const;
00073 bool getHasIJKAct()const;
00074
00075 virtual std::string getCommandString() const;
00076
00077 void reset();
00078
00079 private:
00080 ippOnScanReportCommand(const ippOnScanReportCommand&);
00081 void operator=(const ippOnScanReportCommand&);
00082
00083 std::vector<Key> _orderedKey;
00084 std::map<Key,int> _usedKey;
00085 int _lastIndex;
00086
00087 };
00088 IPP_DECLARE_SMARTPOINTER(ippOnScanReportCommand);