2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 21:00:32 +01:00
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2009-05-15 14:06:56 +02:00
|
|
|
|
2009-09-08 14:59:07 +02:00
|
|
|
#ifndef INCLUDED_CONFIGMGR_SOURCE_DEFAULTPROVIDER_HXX
|
|
|
|
#define INCLUDED_CONFIGMGR_SOURCE_DEFAULTPROVIDER_HXX
|
2009-05-15 14:06:56 +02:00
|
|
|
|
2014-05-28 15:24:46 +02:00
|
|
|
#include <sal/config.h>
|
2009-05-15 14:06:56 +02:00
|
|
|
|
2014-05-28 15:24:46 +02:00
|
|
|
#include <com/sun/star/uno/Reference.hxx>
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#include <sal/types.h>
|
2009-05-15 14:06:56 +02:00
|
|
|
|
2010-10-25 14:43:41 +02:00
|
|
|
namespace com { namespace sun { namespace star {
|
|
|
|
namespace uno {
|
|
|
|
class XComponentContext;
|
|
|
|
class XInterface;
|
|
|
|
}
|
|
|
|
} } }
|
2009-05-15 14:06:56 +02:00
|
|
|
|
|
|
|
namespace configmgr { namespace default_provider {
|
|
|
|
|
2017-12-08 15:58:41 +02:00
|
|
|
css::uno::Reference< css::uno::XInterface >
|
2010-10-25 14:43:41 +02:00
|
|
|
create(
|
2015-07-27 10:59:23 +02:00
|
|
|
css::uno::Reference< css::uno::XComponentContext >
|
2010-10-25 14:43:41 +02:00
|
|
|
const & context);
|
|
|
|
|
2017-12-08 15:58:41 +02:00
|
|
|
OUString getImplementationName();
|
2009-05-15 14:06:56 +02:00
|
|
|
|
2017-12-08 15:58:41 +02:00
|
|
|
css::uno::Sequence< OUString >
|
2009-05-15 14:06:56 +02:00
|
|
|
getSupportedServiceNames();
|
|
|
|
|
|
|
|
} }
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 13:11:31 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|