f261ac7539
2008/03/31 16:01:29 rt 1.7.40.1: #i87441# Change license header to LPGL v3.
94 lines
2.7 KiB
C++
94 lines
2.7 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: textconversion.cxx,v $
|
|
* $Revision: 1.8 $
|
|
*
|
|
* 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.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_i18npool.hxx"
|
|
|
|
#include <assert.h>
|
|
#include <textconversion.hxx>
|
|
|
|
using namespace com::sun::star::uno;
|
|
using namespace rtl;
|
|
|
|
namespace com { namespace sun { namespace star { namespace i18n {
|
|
|
|
extern "C" { static void SAL_CALL thisModule() {} }
|
|
|
|
TextConversion::TextConversion()
|
|
{
|
|
#ifdef SAL_DLLPREFIX
|
|
OUString lib=OUString::createFromAscii(SAL_DLLPREFIX"textconv_dict"SAL_DLLEXTENSION);
|
|
#else
|
|
OUString lib=OUString::createFromAscii("textconv_dict"SAL_DLLEXTENSION);
|
|
#endif
|
|
hModule = osl_loadModuleRelative(
|
|
&thisModule, lib.pData, SAL_LOADMODULE_DEFAULT );
|
|
}
|
|
|
|
TextConversion::~TextConversion()
|
|
{
|
|
if (hModule) osl_unloadModule(hModule);
|
|
}
|
|
|
|
static void* nullFunc()
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
oslGenericFunction SAL_CALL
|
|
TextConversion::getFunctionBySymbol(const sal_Char* func)
|
|
{
|
|
if (hModule)
|
|
return osl_getFunctionSymbol(hModule, OUString::createFromAscii(func).pData);
|
|
else
|
|
return reinterpret_cast< oslGenericFunction >(nullFunc);
|
|
}
|
|
|
|
OUString SAL_CALL
|
|
TextConversion::getImplementationName() throw( RuntimeException )
|
|
{
|
|
return OUString::createFromAscii(implementationName);
|
|
}
|
|
|
|
sal_Bool SAL_CALL
|
|
TextConversion::supportsService(const OUString& rServiceName) throw( RuntimeException )
|
|
{
|
|
return rServiceName.equalsAscii(implementationName);
|
|
}
|
|
|
|
Sequence< OUString > SAL_CALL
|
|
TextConversion::getSupportedServiceNames() throw( RuntimeException )
|
|
{
|
|
Sequence< OUString > aRet(1);
|
|
aRet[0] = OUString::createFromAscii(implementationName);
|
|
return aRet;
|
|
}
|
|
|
|
} } } }
|