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

Diff for /pegasus/src/Pegasus/Common/CIMQualifier.cpp between version 1.5 and 1.32

version 1.5, 2001/05/24 00:48:35 version 1.32, 2007/10/19 18:22:02
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 //  
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // copy of this software and associated documentation files (the "Software"),  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
 // to deal in the Software without restriction, including without limitation  // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // IBM Corp.; EMC Corporation, The Open Group.
 // and/or sell copies of the Software, and to permit persons to whom the  // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 // Software is furnished to do so, subject to the following conditions:  // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 //  // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  // EMC Corporation; Symantec Corporation; The Open Group.
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING  
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  
 // DEALINGS IN THE SOFTWARE.  
 // //
 //==============================================================================  // Permission is hereby granted, free of charge, to any person obtaining a copy
   // of this software and associated documentation files (the "Software"), to
   // deal in the Software without restriction, including without limitation the
   // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
   // sell copies of the Software, and to permit persons to whom the Software is
   // furnished to do so, subject to the following conditions:
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
   // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
   // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
   // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
   // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // //
 // Modified By:  //==============================================================================
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "CIMQualifier.h" #include "CIMQualifier.h"
   #include "CIMQualifierRep.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 33 
Line 40 
 # include "ArrayImpl.h" # include "ArrayImpl.h"
 #undef PEGASUS_ARRAY_T #undef PEGASUS_ARRAY_T
  
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMQualifier
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMQualifier::CIMQualifier()
       : _rep(0)
   {
   }
   
   CIMQualifier::CIMQualifier(const CIMQualifier& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMQualifier::CIMQualifier(
       const CIMName& name,
       const CIMValue& value,
       const CIMFlavor & flavor,
       Boolean propagated)
   {
       _rep = new CIMQualifierRep(name, value, flavor, propagated);
   }
   
   CIMQualifier::CIMQualifier(CIMQualifierRep* rep)
       : _rep(rep)
   {
   }
   
   CIMQualifier::~CIMQualifier()
   {
       Dec(_rep);
   }
   
   CIMQualifier& CIMQualifier::operator=(const CIMQualifier& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   const CIMName& CIMQualifier::getName() const
   {
       CheckRep(_rep);
       return _rep->getName();
   }
   
   void CIMQualifier::setName(const CIMName& name)
   {
       CheckRep(_rep);
       _rep->setName(name);
   }
   
   CIMType CIMQualifier::getType() const
   {
       CheckRep(_rep);
       return _rep->getType();
   }
   
   Boolean CIMQualifier::isArray() const
   {
       CheckRep(_rep);
       return _rep->isArray();
   }
   
   const CIMValue& CIMQualifier::getValue() const
   {
       CheckRep(_rep);
       return _rep->getValue();
   }
   
   void CIMQualifier::setValue(const CIMValue& value)
   {
       CheckRep(_rep);
       _rep->setValue(value);
   }
   
   void CIMQualifier::setFlavor(const CIMFlavor & flavor)
   {
       CheckRep(_rep);
       _rep->setFlavor(flavor);
   }
   
   void CIMQualifier::unsetFlavor(const CIMFlavor & flavor)
   {
       CheckRep(_rep);
       _rep->unsetFlavor(flavor);
   }
   
   const CIMFlavor & CIMQualifier::getFlavor() const
   {
       CheckRep(_rep);
       return _rep->getFlavor();
   }
   
   Uint32 CIMQualifier::getPropagated() const
   {
       CheckRep(_rep);
       return (_rep->getPropagated()) ? 1 : 0;
   }
   
   void CIMQualifier::setPropagated(Boolean propagated)
   {
       CheckRep(_rep);
       _rep->setPropagated(propagated);
   }
   
   Boolean CIMQualifier::isUninitialized() const
   {
       return _rep == 0;
   }
   
 Boolean CIMQualifier::identical(const CIMConstQualifier& x) const Boolean CIMQualifier::identical(const CIMConstQualifier& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
   CIMQualifier CIMQualifier::clone() const
   {
       return CIMQualifier(_rep->clone());
   }
   
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMConstQualifier
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMConstQualifier::CIMConstQualifier()
       : _rep(0)
   {
   }
   
   CIMConstQualifier::CIMConstQualifier(const CIMConstQualifier& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstQualifier::CIMConstQualifier(const CIMQualifier& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstQualifier::CIMConstQualifier(
       const CIMName& name,
       const CIMValue& value,
       const CIMFlavor & flavor,
       Boolean propagated)
   {
       _rep = new CIMQualifierRep(name, value, flavor, propagated);
   }
   
   CIMConstQualifier::~CIMConstQualifier()
   {
       Dec(_rep);
   }
   
   CIMConstQualifier& CIMConstQualifier::operator=(const CIMConstQualifier& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   CIMConstQualifier& CIMConstQualifier::operator=(const CIMQualifier& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   const CIMName& CIMConstQualifier::getName() const
   {
       CheckRep(_rep);
       return _rep->getName();
   }
   
   CIMType CIMConstQualifier::getType() const
   {
       CheckRep(_rep);
       return _rep->getType();
   }
   
   Boolean CIMConstQualifier::isArray() const
   {
       CheckRep(_rep);
       return _rep->isArray();
   }
   
   const CIMValue& CIMConstQualifier::getValue() const
   {
       CheckRep(_rep);
       return _rep->getValue();
   }
   
   const CIMFlavor & CIMConstQualifier::getFlavor() const
   {
       CheckRep(_rep);
       return _rep->getFlavor();
   }
   
   Uint32 CIMConstQualifier::getPropagated() const
   {
       CheckRep(_rep);
       return (_rep->getPropagated()) ? 1 : 0;
   }
   
   Boolean CIMConstQualifier::isUninitialized() const
   {
       return _rep == 0;
   }
   
   Boolean CIMConstQualifier::identical(const CIMConstQualifier& x) const
   {
       CheckRep(x._rep);
       CheckRep(_rep);
       return _rep->identical(x._rep);
   }
   
   CIMQualifier CIMConstQualifier::clone() const
   {
       return CIMQualifier(_rep->clone());
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2