(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.4 and 1.35

version 1.4, 2001/04/25 22:20:55 version 1.35, 2008/12/02 09:00:45
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Licensed to The Open Group (TOG) under one or more contributor license
   // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
   // this work for additional information regarding copyright ownership.
   // Each contributor licenses this file to you under the OpenPegasus Open
   // Source License; you may not use this file except in compliance with the
   // License.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a // Permission is hereby granted, free of charge, to any person obtaining a
 // copy of this software and associated documentation files (the "Software"), // copy of this software and associated documentation files (the "Software"),
Line 9 
Line 14 
 // and/or sell copies of the Software, and to permit persons to whom the // 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: // Software is furnished to do so, subject to the following conditions:
 // //
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // The above copyright notice and this permission notice shall be included
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // in all copies or substantial portions of the Software.
 // 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.  
 //  
 //==============================================================================  
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  // 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
  
   #define PEGASUS_ARRAY_T CIMQualifier
   # include "ArrayImpl.h"
   #undef PEGASUS_ARRAY_T
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMQualifier
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMQualifier::CIMQualifier()
       : _rep(0)
   {
   }
   
   CIMQualifier::CIMQualifier(const CIMQualifier& x)
   {
       _rep = x._rep;
       if (_rep)
           _rep->Inc();
   }
   
   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()
   {
       if(_rep)
          _rep->Dec();
   }
   
   CIMQualifier& CIMQualifier::operator=(const CIMQualifier& x)
   {
       if (x._rep != _rep)
       {
           if (_rep)
               _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
       }
   
       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)
   {
          _rep = x._rep;
          if (_rep)
              _rep->Inc();
   }
   
   CIMConstQualifier::CIMConstQualifier(const CIMQualifier& x)
   {
          _rep = x._rep;
          if (_rep)
              _rep->Inc();
   }
   
   CIMConstQualifier::CIMConstQualifier(
       const CIMName& name,
       const CIMValue& value,
       const CIMFlavor & flavor,
       Boolean propagated)
   {
       _rep = new CIMQualifierRep(name, value, flavor, propagated);
   }
   
   CIMConstQualifier::~CIMConstQualifier()
   {
       if (_rep)
           _rep->Dec();
   }
   
   CIMConstQualifier& CIMConstQualifier::operator=(const CIMConstQualifier& x)
   {
       if (x._rep != _rep)
       {
           if (_rep)
               _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
       }
   
       return *this;
   }
   
   CIMConstQualifier& CIMConstQualifier::operator=(const CIMQualifier& x)
   {
       if (x._rep != _rep)
       {
           if (_rep)
               _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
       }
   
       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.4  
changed lines
  Added in v.1.35

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2