7dd0c588e7
2005/09/05 17:20:30 rt 1.1.30.1: #i54170# Change license header: remove SISSL
87 lines
2.8 KiB
C++
87 lines
2.8 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: attributes.hxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-07 16:28:42 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
|
|
#ifndef _CONFIGMGR_MISC_ATTRIBUTES_HXX_
|
|
#define _CONFIGMGR_MISC_ATTRIBUTES_HXX_
|
|
|
|
#ifndef _COM_SUN_STAR_XML_SAX_XATTRIBUTELIST_HPP_
|
|
#include <com/sun/star/xml/sax/XAttributeList.hpp>
|
|
#endif
|
|
|
|
#ifndef _CPPUHELPER_IMPLBASE1_HXX_
|
|
#include <cppuhelper/implbase1.hxx>
|
|
#endif
|
|
|
|
/*----------------------------------------
|
|
*
|
|
* Attributlist implementation
|
|
*
|
|
*----------------------------------------*/
|
|
|
|
using namespace ::cppu;
|
|
using namespace ::rtl;
|
|
using namespace ::com::sun::star::xml::sax;
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
struct AttributeListImpl_impl;
|
|
class AttributeListImpl : public WeakImplHelper1< XAttributeList >
|
|
{
|
|
protected:
|
|
~AttributeListImpl();
|
|
|
|
public:
|
|
AttributeListImpl();
|
|
AttributeListImpl( const AttributeListImpl & );
|
|
|
|
public:
|
|
virtual sal_Int16 SAL_CALL getLength(void) throw (RuntimeException);
|
|
virtual OUString SAL_CALL getNameByIndex(sal_Int16 i) throw (RuntimeException);
|
|
virtual OUString SAL_CALL getTypeByIndex(sal_Int16 i) throw (RuntimeException);
|
|
virtual OUString SAL_CALL getTypeByName(const OUString& aName) throw (RuntimeException);
|
|
virtual OUString SAL_CALL getValueByIndex(sal_Int16 i) throw (RuntimeException);
|
|
virtual OUString SAL_CALL getValueByName(const OUString& aName) throw (RuntimeException);
|
|
|
|
public:
|
|
void addAttribute( const OUString &sName , const OUString &sType , const OUString &sValue );
|
|
void clear();
|
|
|
|
private:
|
|
struct AttributeListImpl_impl *m_pImpl;
|
|
};
|
|
|
|
#endif // _CONFIGMGR_MISC_ATTRIBUTES_HXX_
|
|
|
|
|