summaryrefslogtreecommitdiff
path: root/forms/source
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 09:57:53 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 09:57:53 +0000
commit7d12600cca630b0a7254ed4446ceed7441077ecc (patch)
tree62b80a90ccd5c8d5709568611ee5590e677eb289 /forms/source
parentb088fee454518e1e88af792c3fa1b0abf048fcad (diff)
INTEGRATION: CWS eforms2 (1.1.2); FILE ADDED
2004/03/18 17:09:43 dvo 1.1.2.2: #114856# continue XForms implementation 2004/01/14 13:00:33 dvo 1.1.2.1: #114856# start XForms core implementation
Diffstat (limited to 'forms/source')
-rw-r--r--forms/source/xforms/xforms_services.hxx27
1 files changed, 27 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..e40550bc6550
--- /dev/null
+++ b/forms/source/xforms/xforms_services.hxx
@@ -0,0 +1,27 @@
+
+
+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 );
+}