update dev300-m58
[ooovba.git] / linguistic / source / hhconvdic.hxx
blobe09d3e513d1b204ab708ce6fa22f046374619173
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: hhconvdic.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _LINGUISTIC_HHConvDic_HXX_
32 #define _LINGUISTIC_HHConvDic_HXX_
34 #include <com/sun/star/linguistic2/XConversionDictionary.hpp>
35 #include <com/sun/star/util/XFlushable.hpp>
36 #include <com/sun/star/lang/XServiceInfo.hpp>
37 #include <cppuhelper/implbase3.hxx>
38 #include <cppuhelper/interfacecontainer.h>
39 #include <tools/string.hxx>
41 #include "misc.hxx"
42 #include "defs.hxx"
43 #include "convdic.hxx"
45 ///////////////////////////////////////////////////////////////////////////
47 class HHConvDic :
48 public ConvDic
50 // disallow copy-constructor and assignment-operator for now
51 HHConvDic(const HHConvDic &);
52 HHConvDic & operator = (const HHConvDic &);
54 public:
55 HHConvDic( const String &rName, const String &rMainURL );
56 virtual ~HHConvDic();
58 // XConversionDictionary
59 virtual void SAL_CALL addEntry( const ::rtl::OUString& aLeftText, const ::rtl::OUString& aRightText ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException);
61 // XServiceInfo
62 virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
63 virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
64 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
67 static inline ::rtl::OUString
68 getImplementationName_Static() throw();
69 static com::sun::star::uno::Sequence< ::rtl::OUString >
70 getSupportedServiceNames_Static() throw();
73 inline ::rtl::OUString HHConvDic::getImplementationName_Static() throw()
75 return A2OU( "com.sun.star.lingu2.HHConvDic" );
78 ///////////////////////////////////////////////////////////////////////////
80 #endif