00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #pragma once
00016 #include "ippResponse.h"
00017
00018 class IPPDME_EXT_CLASS ippIsUserEnabledResponse : public ippResponse {
00019
00020 private:
00021 bool _enabled;
00022
00023 public:
00024
00025 ippIsUserEnabledResponse(unsigned int inTagNumber, bool inEnabled);
00026 virtual ~ippIsUserEnabledResponse();
00027
00028 void setEnabled(bool inEnabled){ _enabled = inEnabled; }
00029 bool getEnabled()const { return _enabled; }
00030
00031 virtual std::string getResponseString() const;
00032 private:
00033
00034 ippIsUserEnabledResponse(const ippIsUserEnabledResponse&);
00035 void operator=(const ippIsUserEnabledResponse&);
00036
00037 };
00038 IPP_DECLARE_SMARTPOINTER(ippIsUserEnabledResponse);