INTEGRATION: CWS warnings01 (1.2.100); FILE MERGED
2005/09/22 18:05:06 sb 1.2.100.2: RESYNC: (1.2-1.3); FILE MERGED 2005/09/09 12:37:19 sb 1.2.100.1: #i53898# Made code warning-free.
This commit is contained in:
parent
5f602cd501
commit
f713752326
1 changed files with 9 additions and 5 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: cppinterfaceproxy.hxx,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
* $Revision: 1.4 $
|
||||
*
|
||||
* last change: $Author: rt $ $Date: 2005-09-07 22:09:33 $
|
||||
* last change: $Author: hr $ $Date: 2006-06-19 23:38:14 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -51,6 +51,10 @@ namespace bridges { namespace cpp_uno { namespace shared {
|
|||
|
||||
class Bridge;
|
||||
|
||||
extern "C" typedef void SAL_CALL FreeCppInterfaceProxy(
|
||||
uno_ExtEnvironment * pEnv, void * pInterface);
|
||||
FreeCppInterfaceProxy freeCppInterfaceProxy;
|
||||
|
||||
/**
|
||||
* A cpp proxy wrapping a uno interface.
|
||||
*/
|
||||
|
@ -63,9 +67,6 @@ public:
|
|||
typelib_InterfaceTypeDescription * pTypeDescr,
|
||||
rtl::OUString const & rOId) SAL_THROW(());
|
||||
|
||||
static void SAL_CALL free(uno_ExtEnvironment * pEnv, void * pInterface)
|
||||
SAL_THROW(());
|
||||
|
||||
// Interface for individual CPP--UNO bridges:
|
||||
|
||||
Bridge * getBridge() { return pBridge; }
|
||||
|
@ -102,6 +103,9 @@ private:
|
|||
rtl::OUString oid;
|
||||
|
||||
void ** vtables[1];
|
||||
|
||||
friend void SAL_CALL freeCppInterfaceProxy(
|
||||
uno_ExtEnvironment * pEnv, void * pInterface);
|
||||
};
|
||||
|
||||
} } }
|
||||
|
|
Loading…
Reference in a new issue