summaryrefslogtreecommitdiff
path: root/forms/source/xforms/xforms_services.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/xforms_services.hxx')
-rw-r--r--forms/source/xforms/xforms_services.hxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/forms/source/xforms/xforms_services.hxx b/forms/source/xforms/xforms_services.hxx
new file mode 100644
index 000000000000..c1e4dc459dc0
--- /dev/null
+++ b/forms/source/xforms/xforms_services.hxx
@@ -0,0 +1,30 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+
+
+namespace com { namespace sun { namespace star {
+ namespace uno { class XInterface; }
+ namespace uno { template<class T> class Reference<T>; }
+ namespace uno { class RuntimeException; }
+ namespace lang { class XMultiServiceFactory; }
+} } }
+
+
+namespace frm
+{
+ com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
+ SAL_CALL Binding_CreateInstance(
+ const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
+ throw( com::sun::star::uno::RuntimeException );
+
+ com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
+ SAL_CALL Model_CreateInstance(
+ const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
+ throw( com::sun::star::uno::RuntimeException );
+
+ com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
+ SAL_CALL XForms_CreateInstance(
+ const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
+ throw( com::sun::star::uno::RuntimeException );
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */