00001 // 00002 // DISCLAIMER: 00003 // This software was produced by the National Institute of Standards 00004 // and Technology (NIST), an agency of the U.S. government, and by statute is 00005 // not subject to copyright in the United States. Recipients of this 00006 // software assume all responsibility associated with its operation, 00007 // modification,maintenance, and subsequent redistribution. 00008 // 00009 // See NIST Administration Manual 4.09.07 b and Appendix I. 00010 #pragma once 00011 #include "ippdme/Command/ippCommand.h" 00012 // This is identical to the GetPropCommand except for the E in the name 00013 // and the use of EventTag rather than CommandTag. 00014 #include "ippdme/Command/ippGetPropCommand.h" 00015 class IPPDME_EXT_CLASS ippGetPropECommand : public ippGetPropCommand 00016 { 00017 public: 00018 ippGetPropECommand(unsigned int tgNum); 00019 virtual ~ippGetPropECommand(); 00020 virtual std::string getCommandString() const; 00021 private: 00022 ippGetPropECommand(const ippGetPropECommand&); 00023 void operator=(const ippGetPropECommand&); 00024 }; 00025 IPP_DECLARE_SMARTPOINTER(ippGetPropECommand);