summaryrefslogtreecommitdiff
path: root/cppuhelper/source/typedescriptionprovider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper/source/typedescriptionprovider.hxx')
-rw-r--r--cppuhelper/source/typedescriptionprovider.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/cppuhelper/source/typedescriptionprovider.hxx b/cppuhelper/source/typedescriptionprovider.hxx
new file mode 100644
index 000000000000..716f2adaee05
--- /dev/null
+++ b/cppuhelper/source/typedescriptionprovider.hxx
@@ -0,0 +1,31 @@
+/* -*- 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"
+
+namespace com { namespace sun { namespace star { namespace uno {
+ class XSimpleRegistry;
+} } } }
+namespace rtl { class OUString; }
+
+namespace cppuhelper {
+
+css::uno::Reference< css::registry::XSimpleRegistry > createTypeRegistry(
+ rtl::OUString const & uris, rtl::OUString const & libraryDirectoryUri);
+
+}
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */