forked from amazingfate/loongoffice
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
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
|
|
|
|
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 );
|
|
}
|