Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

ippOnePropertyId.h

Go to the documentation of this file.
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 
00011 //-----------------------------------------------------------------------------
00012 //
00013 // Description :
00014 // Use this for data from GetProp(Tool.Id()), GetPropE(Tool.Id()), 
00015 // GetProp(FoundTool.Id()), or GetPropE(FoundTool.Id()).
00016 //-----------------------------------------------------------------------------
00017 #pragma once
00018 
00019 #include "ippdme/Property/ippOneProperty.h"
00020 
00021 #include <string>
00022 
00023 //-----------------------------------------------------------------------------
00024 class IPPDME_EXT_CLASS ippOnePropertyId : public ippOneProperty
00025 {
00026 private:
00027   std::string _idString;
00028 
00029 public:
00030   ippOnePropertyId( 
00031     ippOtherKeyType keyword, 
00032     const char* inIdString
00033   );
00034 
00035   virtual ~ippOnePropertyId(){  }
00036 
00037   void setIdString(const char * inIdString){ _idString = inIdString; }
00038   const char * getIdString() const{ return _idString.c_str(); }
00039 
00040   virtual void propString(ippStringBuilder& ) const;
00041 
00042 private:
00043   ippOnePropertyId(const ippOnePropertyId&);
00044   void operator=(const ippOnePropertyId&);
00045 };
00046 
00047 IPP_DECLARE_SMARTPOINTER(ippOnePropertyId);

Generated on Wed Nov 8 00:19:59 2006 for IPPDME by  doxygen 1.4.1