(file) Return to CIMParamValueRep.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMParamValueRep.h between version 1.5 and 1.6

version 1.5, 2002/02/22 02:48:01 version 1.6, 2002/02/23 03:47:22
Line 34 
Line 34 
 #include <Pegasus/Common/Exception.h> #include <Pegasus/Common/Exception.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/Sharable.h> #include <Pegasus/Common/Sharable.h>
 #include <Pegasus/Common/CIMParameter.h>  
 #include <Pegasus/Common/CIMValue.h> #include <Pegasus/Common/CIMValue.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMConstParameter;  
   
 class PEGASUS_COMMON_LINKAGE CIMParamValueRep : public Sharable class PEGASUS_COMMON_LINKAGE CIMParamValueRep : public Sharable
 { {
 public: public:
  
     CIMParamValueRep(     CIMParamValueRep(
         CIMParameter parameter,          String parameterName,
         CIMValue value);          CIMValue value,
           Boolean isTyped=true);
  
     ~CIMParamValueRep();     ~CIMParamValueRep();
  
     const CIMParameter & getParameter() const      const String & getParameterName() const
     {     {
         return _parameter;          return _parameterName;
     }     }
  
     const CIMValue & getValue() const     const CIMValue & getValue() const
Line 61 
Line 59 
         return _value;         return _value;
     }     }
  
     void setParameter(CIMParameter& parameter);      Boolean isTyped() const
       {
           return _isTyped;
       }
   
       void setParameterName(String& parameterName);
  
     void setValue(CIMValue& value);     void setValue(CIMValue& value);
  
       void setIsTyped(Boolean isTyped);
   
     void toXml(Array<Sint8>& out) const;     void toXml(Array<Sint8>& out) const;
  
     void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;     void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;
Line 84 
Line 89 
  
     CIMParamValueRep& operator=(const CIMParamValueRep& x);     CIMParamValueRep& operator=(const CIMParamValueRep& x);
  
     CIMParameter _parameter;      String _parameterName;
     CIMValue _value;     CIMValue _value;
       Boolean _isTyped;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2