2013-02-22 17:20:18 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sal/config.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "rtl/ref.hxx"
|
|
|
|
#include "rtl/ustring.hxx"
|
2013-02-25 15:31:05 +01:00
|
|
|
#include "unoidl/unoidl.hxx"
|
|
|
|
#include "unoidl/unoidlprovider.hxx"
|
2013-02-22 17:20:18 +01:00
|
|
|
|
2013-02-25 15:31:05 +01:00
|
|
|
namespace unoidl {
|
2013-02-22 17:20:18 +01:00
|
|
|
|
2013-02-25 15:31:05 +01:00
|
|
|
NoSuchFileException::~NoSuchFileException() throw () {}
|
|
|
|
|
|
|
|
FileFormatException::~FileFormatException() throw () {}
|
2013-02-22 17:20:18 +01:00
|
|
|
|
|
|
|
Entity::~Entity() throw () {}
|
|
|
|
|
|
|
|
MapCursor::~MapCursor() throw () {}
|
|
|
|
|
|
|
|
ModuleEntity::~ModuleEntity() throw () {}
|
|
|
|
|
|
|
|
PublishableEntity::~PublishableEntity() throw () {}
|
|
|
|
|
|
|
|
EnumTypeEntity::~EnumTypeEntity() throw () {}
|
|
|
|
|
|
|
|
PlainStructTypeEntity::~PlainStructTypeEntity() throw () {}
|
|
|
|
|
|
|
|
PolymorphicStructTypeTemplateEntity::~PolymorphicStructTypeTemplateEntity()
|
|
|
|
throw ()
|
|
|
|
{}
|
|
|
|
|
|
|
|
ExceptionTypeEntity::~ExceptionTypeEntity() throw () {}
|
|
|
|
|
|
|
|
InterfaceTypeEntity::~InterfaceTypeEntity() throw () {}
|
|
|
|
|
|
|
|
TypedefEntity::~TypedefEntity() throw () {}
|
|
|
|
|
|
|
|
ConstantGroupEntity::~ConstantGroupEntity() throw () {}
|
|
|
|
|
|
|
|
SingleInterfaceBasedServiceEntity::~SingleInterfaceBasedServiceEntity() throw ()
|
|
|
|
{}
|
|
|
|
|
|
|
|
AccumulationBasedServiceEntity::~AccumulationBasedServiceEntity() throw () {}
|
|
|
|
|
|
|
|
InterfaceBasedSingletonEntity::~InterfaceBasedSingletonEntity() throw () {}
|
|
|
|
|
|
|
|
ServiceBasedSingletonEntity::~ServiceBasedSingletonEntity() throw () {}
|
|
|
|
|
|
|
|
Provider::~Provider() throw () {}
|
|
|
|
|
2013-02-25 15:31:05 +01:00
|
|
|
rtl::Reference< Provider > loadProvider(OUString const & uri) {
|
2013-02-22 17:20:18 +01:00
|
|
|
return new UnoidlProvider(uri);
|
|
|
|
}
|
|
|
|
|
2013-02-25 15:31:05 +01:00
|
|
|
}
|
2013-02-22 17:20:18 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|