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

File: [Pegasus] / pegasus / src / Pegasus / Common / Attic / CIMNamedInstance.cpp (download)
Revision: 1.9, Thu May 30 21:54:54 2002 UTC (22 years, 1 month ago) by kumpf
Branch: MAIN
CVS Tags: TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP311_WSMan-root, TASK-PEP311_WSMan-branch, RELEASE_2_5_0-RC1, HPUX_TEST, HEAD
Changes since 1.8: +0 -0 lines
FILE REMOVED
HP-RK Remove CIMNamedInstance class.  CIMInstance is now used instead.

//%/////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,
// The Open Group, Tivoli Systems
//
// 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.
//
//==============================================================================
//
// Author: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
//
// Modified By:
//
//%/////////////////////////////////////////////////////////////////////////////

#include "CIMNamedInstance.h"
#include "XmlWriter.h"

PEGASUS_USING_STD;

PEGASUS_NAMESPACE_BEGIN

////////////////////////////////////////////////////////////////////////////////
//
// CIMNamedInstance
//
////////////////////////////////////////////////////////////////////////////////

class CIMNamedInstanceRep
{
public:
    CIMObjectPath instanceName;
    CIMInstance instance;
};


CIMNamedInstance::CIMNamedInstance()
{
    _rep = new CIMNamedInstanceRep();
}

CIMNamedInstance::CIMNamedInstance(
    const CIMObjectPath& instanceName,
    const CIMInstance& instance) 
{
    _rep = new CIMNamedInstanceRep();
    _rep->instanceName = instanceName;
    _rep->instance = instance;
}

CIMNamedInstance::CIMNamedInstance(const CIMNamedInstance& namedInstance)
{
    _rep = new CIMNamedInstanceRep();
    _rep->instanceName = namedInstance._rep->instanceName;
    _rep->instance = namedInstance._rep->instance;
}

CIMNamedInstance::~CIMNamedInstance()
{
    delete _rep;
}

CIMNamedInstance& CIMNamedInstance::operator=(
    const CIMNamedInstance& namedInstance
)
{
    if (this != &namedInstance)
    {
	_rep->instanceName = namedInstance._rep->instanceName;
	_rep->instance = namedInstance._rep->instance;
    }
    return *this;
}

void CIMNamedInstance::set(
    const CIMObjectPath& instanceName, 
    const CIMInstance& instance)
{
    _rep->instanceName = instanceName;
    _rep->instance = instance;
}

const CIMObjectPath& CIMNamedInstance::getInstanceName() const
{
    return _rep->instanceName;
}

const CIMInstance& CIMNamedInstance::getInstance() const
{
    return _rep->instance;
}

CIMObjectPath& CIMNamedInstance::getInstanceName()
{
    return _rep->instanceName;
}

CIMInstance& CIMNamedInstance::getInstance()
{
    return _rep->instance;
}

CIMNamedInstance CIMNamedInstance::clone() const
{
    CIMNamedInstance ni;
    ni.set(_rep->instanceName.clone(), _rep->instance.clone());
    return ni;
}

#define PEGASUS_ARRAY_T CIMNamedInstance
#include <Pegasus/Common/ArrayImpl.h>
#undef PEGASUS_ARRAY_T

PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2