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

ippOnePropertyName.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.Name()), GetPropE(Tool.Name()), 
00015 // GetProp(FoundTool.Name()), or GetPropE(FoundTool.Name()).
00016 //
00017 //-----------------------------------------------------------------------------
00018 #pragma once
00019 
00020 #include "ippdme/Property/ippOneProperty.h"
00021 #include <string>
00022 
00023 
00024 //-----------------------------------------------------------------------------
00025 class IPPDME_EXT_CLASS ippOnePropertyName : public ippOneProperty
00026 {
00027 private:
00028   std::string _nameString;
00029 
00030 public:
00031   ippOnePropertyName(
00032     ippOtherKeyType keyword, 
00033     const char * inNameString
00034   );
00035 
00036   virtual ~ippOnePropertyName(){ }
00037 
00038   void setNameString(const char * inNameString){ _nameString = inNameString; }
00039 
00040   const char * getNameString() const { return _nameString.c_str(); }
00041 
00042   virtual void propString(ippStringBuilder& ) const;
00043 
00044 private:
00045   ippOnePropertyName(const ippOnePropertyName&);
00046   void operator=(const ippOnePropertyName&);
00047 };
00048 IPP_DECLARE_SMARTPOINTER(ippOnePropertyName);

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