summaryrefslogtreecommitdiffstats
path: root/cui/source/inc/colorpicker.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-11 18:00:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-11 18:00:18 +0200
commit6bb60dab6f901797dd062bd9e61a17ee0ca5ae92 (patch)
tree037989948536d0a94a2bd2b44e9e011aa3f6ffe6 /cui/source/inc/colorpicker.hxx
parentClean up function declarations and some unused functions (diff)
downloadcore-6bb60dab6f901797dd062bd9e61a17ee0ca5ae92.tar.gz
core-6bb60dab6f901797dd062bd9e61a17ee0ca5ae92.zip
Clean up function declarations and some unused functions
Change-Id: I45ea22c86ea66c49fd86af2b5d0df060138f7e9a
Diffstat (limited to 'cui/source/inc/colorpicker.hxx')
-rw-r--r--cui/source/inc/colorpicker.hxx51
1 files changed, 51 insertions, 0 deletions
diff --git a/cui/source/inc/colorpicker.hxx b/cui/source/inc/colorpicker.hxx
new file mode 100644
index 000000000000..c5fe678bafbe
--- /dev/null
+++ b/cui/source/inc/colorpicker.hxx
@@ -0,0 +1,51 @@
+/* -*- 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/.
+ *
+ * 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 .
+ */
+
+#ifndef INCLUDED_CUI_SOURCE_INC_COLORPICKER_HXX
+#define INCLUDED_CUI_SOURCE_INC_COLORPICKER_HXX
+
+#include <sal/config.h>
+
+#include <com/sun/star/uno/Exception.hpp>
+#include <com/sun/star/uno/Reference.hxx>
+#include <com/sun/star/uno/RuntimeException.hpp>
+#include <com/sun/star/uno/Sequence.hxx>
+#include <rtl/ustring.hxx>
+#include <sal/types.h>
+
+namespace com { namespace sun { namespace star { namespace uno {
+ class XComponentContext;
+ class XInterface;
+} } } }
+
+namespace cui {
+
+OUString SAL_CALL ColorPicker_getImplementationName();
+
+css::uno::Reference<css::uno::XInterface> SAL_CALL ColorPicker_createInstance(
+ css::uno::Reference<css::uno::XComponentContext> const &)
+ SAL_THROW((css::uno::Exception));
+
+css::uno::Sequence<OUString> SAL_CALL ColorPicker_getSupportedServiceNames()
+ throw (css::uno::RuntimeException);
+}
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */