00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #pragma once
00040
00041 #include "ippdme/ippdme.h"
00042 #include "ippdme/ippCommandNameType.h"
00043 #include "ippdme/ippTag.h"
00044 #include "ippdme/ippKeyStrings.h"
00045 #include "ippdme/ippObject.h"
00046
00047 class ippStringBuilder;
00048
00049 class IPPDME_EXT_CLASS ippCommand : public ippObject {
00050
00051 public:
00052
00056 ippCommand(
00057 unsigned int inTagNumber,
00058 ippCommandNameType inCommandName
00059 );
00060
00061
00066 ippCommand(
00067 unsigned int inTagNumber,
00068 tagIdType inTagType,
00069 ippCommandNameType inCommandName
00070 );
00071
00072 virtual ~ippCommand();
00073
00074 void setCommandName(ippCommandNameType inCommandName) { _commandName = inCommandName; }
00075 ippCommandNameType getCommandName() const { return _commandName; }
00076
00077 const ippTag& getTag() const { return _tag; }
00078
00079
00080 virtual std::string getCommandString() const;
00081
00082 protected:
00083 ippTag _tag;
00084
00085
00086 void printLikeGet(
00087 ippStringBuilder& builder,
00088 bool R,
00089 bool X, bool Y, bool Z,
00090 bool A, bool B, bool C
00091 ) const;
00092
00093 private:
00094 bool _newCommand;
00095 ippCommandNameType _commandName;
00096
00097
00098 };
00099 IPP_DECLARE_SMARTPOINTER(ippCommand);
00100
00101
00102