67e69a5582
This reverts commit 892ef8b056
,
Windows-only cli_ure needs to be adapted first.
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/* -*- 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/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_CPPUHELPER_SOURCE_TYPEDESCRIPTIONPROVIDER_HXX
|
|
#define INCLUDED_CPPUHELPER_SOURCE_TYPEDESCRIPTIONPROVIDER_HXX
|
|
|
|
#include "sal/config.h"
|
|
|
|
#include "com/sun/star/uno/Reference.hxx"
|
|
#include "com/sun/star/uno/Sequence.hxx"
|
|
|
|
namespace com { namespace sun { namespace star {
|
|
namespace container { class XHierarchicalNameAccess; }
|
|
namespace lang { class XMultiComponentFactory; }
|
|
namespace uno { class XComponentContext; }
|
|
} } }
|
|
namespace rtl { class OUString; }
|
|
|
|
namespace cppuhelper {
|
|
|
|
css::uno::Sequence<
|
|
css::uno::Reference< css::container::XHierarchicalNameAccess > >
|
|
createTypeDescriptionProviders(
|
|
rtl::OUString const & uris,
|
|
css::uno::Reference< css::lang::XMultiComponentFactory > const &
|
|
serviceManager,
|
|
css::uno::Reference< css::uno::XComponentContext > const & context);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|