1 
2 
3 namespace com { namespace sun { namespace star {
4     namespace uno { class XInterface; }
5     namespace uno { template<class T> class Reference<T>; }
6     namespace uno { class RuntimeException; }
7     namespace lang { class XMultiServiceFactory; }
8 } } }
9 
10 
11 namespace frm
12 {
13     com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
14     SAL_CALL Binding_CreateInstance(
15         const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
16         throw( com::sun::star::uno::RuntimeException );
17 
18     com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
19     SAL_CALL Model_CreateInstance(
20         const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
21         throw( com::sun::star::uno::RuntimeException );
22 
23     com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
24     SAL_CALL XForms_CreateInstance(
25         const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& _rxFactory)
26         throw( com::sun::star::uno::RuntimeException );
27 }
28