(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.3 and 1.30.4.1

version 1.3, 2001/04/08 01:13:21 version 1.30.4.1, 2007/11/07 20:40:17
Line 1 
Line 1 
 //BEGIN_LICENSE  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
   //
   // 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:
   //
   // 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.
 // //
 // 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:  
 // //
 // 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  #include "CIMQualifier.h"
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  #include "CIMQualifierRep.h"
 // 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  PEGASUS_NAMESPACE_BEGIN
 // DEALINGS IN THE SOFTWARE.  
 //  #define PEGASUS_ARRAY_T CIMQualifier
 //END_LICENSE  # include "ArrayImpl.h"
 //BEGIN_HISTORY  #undef PEGASUS_ARRAY_T
 //  
 // Author:  ////////////////////////////////////////////////////////////////////////////////
 //  
 // $Log$  
 // Revision 1.3  2001/04/08 01:13:21  mike  
 // Changed "ConstCIM" to "CIMConst"  
 //  
 // Revision 1.1  2001/02/18 18:39:06  mike  
 // new  
 //  
 // Revision 1.2  2001/02/18 03:56:01  mike  
 // Changed more class names (e.g., ConstClassDecl -> CIMConstClass)  
 // //
 // Revision 1.1  2001/02/16 02:07:06  mike  // CIMQualifier
 // Renamed many classes and headers (using new CIM prefixes).  
 // //
 // Revision 1.1.1.1  2001/01/14 19:53:05  mike  ////////////////////////////////////////////////////////////////////////////////
 // Pegasus import  
   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
   {
       CheckRep(x._rep);
       CheckRep(_rep);
       return _rep->identical(x._rep);
   }
   
   CIMQualifier CIMQualifier::clone() const
   {
       return CIMQualifier(_rep->clone());
   }
   
   void CIMQualifier::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
   }
   
   
   ////////////////////////////////////////////////////////////////////////////////
 // //
   // CIMConstQualifier
 // //
 //END_HISTORY  ////////////////////////////////////////////////////////////////////////////////
  
 #include "CIMQualifier.h"  CIMConstQualifier::CIMConstQualifier()
       : _rep(0)
   {
   }
  
 PEGASUS_NAMESPACE_BEGIN  CIMConstQualifier::CIMConstQualifier(const CIMConstQualifier& x)
   {
       Inc(_rep = x._rep);
   }
  
 Boolean CIMQualifier::identical(const CIMConstQualifier& x) const  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
 { {
     x._checkRep();      CheckRep(_rep);
     _checkRep();      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);     return _rep->identical(x._rep);
 } }
  
   CIMQualifier CIMConstQualifier::clone() const
   {
       return CIMQualifier(_rep->clone());
   }
   
   void CIMConstQualifier::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.30.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2