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

Diff for /pegasus/src/Pegasus/Common/CIMQualifierDecl.cpp between version 1.4 and 1.27

version 1.4, 2001/04/25 22:20:55 version 1.27, 2007/09/03 11:27: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 "CIMQualifierDecl.h" #include "CIMQualifierDecl.h"
   #include "CIMQualifierDeclRep.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   #define PEGASUS_ARRAY_T CIMQualifierDecl
   # include "ArrayImpl.h"
   #undef PEGASUS_ARRAY_T
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMQualifierDecl
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMQualifierDecl::CIMQualifierDecl()
       : _rep(0)
   {
   }
   
   CIMQualifierDecl::CIMQualifierDecl(const CIMQualifierDecl& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMQualifierDecl::CIMQualifierDecl(
       const CIMName& name,
       const CIMValue& value,
       const CIMScope & scope,
       const CIMFlavor & flavor,
       Uint32 arraySize)
   {
       _rep = new CIMQualifierDeclRep(name, value, scope, flavor, arraySize);
   }
   
   CIMQualifierDecl::CIMQualifierDecl(CIMQualifierDeclRep* rep)
       : _rep(rep)
   {
   }
   
   CIMQualifierDecl::~CIMQualifierDecl()
   {
       Dec(_rep);
   }
   
   CIMQualifierDecl& CIMQualifierDecl::operator=(const CIMQualifierDecl& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   const CIMName& CIMQualifierDecl::getName() const
   {
       CheckRep(_rep);
       return _rep->getName();
   }
   
   void CIMQualifierDecl::setName(const CIMName& name)
   {
       CheckRep(_rep);
       _rep->setName(name);
   }
   
   CIMType CIMQualifierDecl::getType() const
   {
       CheckRep(_rep);
       return _rep->getType();
   }
   
   Boolean CIMQualifierDecl::isArray() const
   {
       CheckRep(_rep);
       return _rep->isArray();
   }
   
   const CIMValue& CIMQualifierDecl::getValue() const
   {
       CheckRep(_rep);
       return _rep->getValue();
   }
   
   void CIMQualifierDecl::setValue(const CIMValue& value)
   {
       CheckRep(_rep);
       _rep->setValue(value);
   }
   
   const CIMScope & CIMQualifierDecl::getScope() const
   {
       CheckRep(_rep);
       return _rep->getScope();
   }
   
   const CIMFlavor & CIMQualifierDecl::getFlavor() const
   {
       CheckRep(_rep);
       return _rep->getFlavor();
   }
   
   Uint32 CIMQualifierDecl::getArraySize() const
   {
       CheckRep(_rep);
       return _rep->getArraySize();
   }
   
   Boolean CIMQualifierDecl::isUninitialized() const
   {
       return _rep == 0;
   }
   
 Boolean CIMQualifierDecl::identical(const CIMConstQualifierDecl& x) const Boolean CIMQualifierDecl::identical(const CIMConstQualifierDecl& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
       return _rep->identical(x._rep);
   }
   
   CIMQualifierDecl CIMQualifierDecl::clone() const
   {
       return CIMQualifierDecl(_rep->clone());
   }
   
   void CIMQualifierDecl::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
   }
   
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMConstQualifierDecl
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMConstQualifierDecl::CIMConstQualifierDecl()
       : _rep(0)
   {
   }
   
   CIMConstQualifierDecl::CIMConstQualifierDecl(const CIMConstQualifierDecl& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstQualifierDecl::CIMConstQualifierDecl(const CIMQualifierDecl& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstQualifierDecl::CIMConstQualifierDecl(
       const CIMName& name,
       const CIMValue& value,
       const CIMScope & scope,
       const CIMFlavor & flavor,
       Uint32 arraySize)
   {
       _rep = new CIMQualifierDeclRep(name, value, scope, flavor, arraySize);
   }
   
   CIMConstQualifierDecl::~CIMConstQualifierDecl()
   {
       Dec(_rep);
   }
   
   CIMConstQualifierDecl& CIMConstQualifierDecl::operator=(
       const CIMConstQualifierDecl& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   CIMConstQualifierDecl& CIMConstQualifierDecl::operator=(
       const CIMQualifierDecl& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
   
       return *this;
   }
   
   const CIMName& CIMConstQualifierDecl::getName() const
   {
       CheckRep(_rep);
       return _rep->getName();
   }
   
   CIMType CIMConstQualifierDecl::getType() const
   {
       CheckRep(_rep);
       return _rep->getType();
   }
   
   Boolean CIMConstQualifierDecl::isArray() const
   {
       CheckRep(_rep);
       return _rep->isArray();
   }
   
   const CIMValue& CIMConstQualifierDecl::getValue() const
   {
       CheckRep(_rep);
       return _rep->getValue();
   }
   
   const CIMScope & CIMConstQualifierDecl::getScope() const
   {
       CheckRep(_rep);
       return _rep->getScope();
   }
   
   const CIMFlavor & CIMConstQualifierDecl::getFlavor() const
   {
       CheckRep(_rep);
       return _rep->getFlavor();
   }
   
   Uint32 CIMConstQualifierDecl::getArraySize() const
   {
       CheckRep(_rep);
       return _rep->getArraySize();
   }
   
   Boolean CIMConstQualifierDecl::isUninitialized() const
   {
       return _rep == 0;
   }
   
   Boolean CIMConstQualifierDecl::identical(const CIMConstQualifierDecl& x) const
   {
       CheckRep(x._rep);
       CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
   CIMQualifierDecl CIMConstQualifierDecl::clone() const
   {
       return CIMQualifierDecl(_rep->clone());
   }
   
   void CIMConstQualifierDecl::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.4  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2