office-gobmx/configmgr/source/treemgr/nodeimpl.hxx
Rüdiger Timm a7c194c0b6 INTEGRATION: CWS changefileheader (1.15.16); FILE MERGED
2008/04/01 15:06:57 thb 1.15.16.3: #i85898# Stripping all external header guards
2008/04/01 12:27:37 thb 1.15.16.2: #i85898# Stripping all external header guards
2008/03/31 12:22:56 rt 1.15.16.1: #i87441# Change license header to LPGL v3.
2008-04-11 12:49:33 +00:00

103 lines
3.4 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: nodeimpl.hxx,v $
* $Revision: 1.16 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef CONFIGMGR_CONFIGNODEBEHAVIOR_HXX_
#define CONFIGMGR_CONFIGNODEBEHAVIOR_HXX_
#include "attributes.hxx"
#include "node.hxx"
#include "utility.hxx"
#include <rtl/ref.hxx>
#include "nodeaccess.hxx"
namespace configmgr
{
//-----------------------------------------------------------------------------
namespace data { class NodeAccess; }
namespace view { class ViewStrategy; }
//-----------------------------------------------------------------------------
namespace configuration
{
//-----------------------------------------------------------------------------
typedef unsigned int NodeOffset;
class TreeImpl;
class Name;
class NodeChange;
class NodeChanges;
class NodeChangesInformation;
//-----------------------------------------------------------------------------
// Specific types of nodes
//-----------------------------------------------------------------------------
class NodeImpl;
struct INodeHandler;
// Almost an interface, but derives from concrete OReference
class NodeImpl : public configmgr::SimpleReferenceObject
{
friend class view::ViewStrategy;
data::NodeAddress m_pNodeRef;
public:
NodeImpl(data::NodeAddress _pNodeRef)
: m_pNodeRef(_pNodeRef) {}
public:
/// provide access to the address of the underlying node
data::NodeAddress getOriginalNodeAddress() const
{ return m_pNodeRef; }
/// provide access to the data of the underlying node
data::NodeAccess getOriginalNodeAccess() const
{ return data::NodeAccess( m_pNodeRef ); }
};
//-----------------------------------------------------------------------------
class ValueElementNodeImpl;
class GroupNodeImpl;
class SetNodeImpl;
//-----------------------------------------------------------------------------
struct INodeHandler
{
virtual void handle( ValueElementNodeImpl& rNode) = 0;
virtual void handle( GroupNodeImpl& rNode) = 0;
virtual void handle( SetNodeImpl& rNode) = 0;
};
//-----------------------------------------------------------------------------
}
}
#endif // CONFIGMGR_CONFIGNODEBEHAVIOR_HXX_