:: cppu ::

class Enterable


Base Classes
uno_Enterable (public)
  |  
  +--Enterable
Known Derived Classes
None.

virtual abstract interface template
YES YES YES NO
Summary
C++ wrapper for binary C Enterable (http://wiki.services.openoffice.org/wiki/Uno/Cpp/Spec/Environment_Stack)
See Also
uno_Enterable
Since
UDK 3.2.7
File
Enterable.hxx

Public Members

Methods

virtual void
v_enter( void ) = 0;
virtual void
v_leave( void ) = 0;
virtual void
v_callInto_v( uno_EnvCallee * pCallee, va_list * pParam ) = 0;
virtual void
v_callOut_v( uno_EnvCallee * pCallee, va_list * pParam ) = 0;
virtual int
v_isValid( rtl::OUString * pReason ) = 0;
virtual
~Enterable( );
explicit
Enterable( void );
void
enter( void );
void
leave( void );
void
callInto_v( uno_EnvCallee * pCallee, va_list * pParam );
void
callOut_v( uno_EnvCallee * pCallee, va_list * pParam );
void
callInto( uno_EnvCallee * pCallee, ... );
void
callOut( uno_EnvCallee * pCallee, ... );
int
isValid( rtl::OUString * pReason );

Private Members

Methods


Enterable( const Enterable & );
Enterable &
operator=( const Enterable & );

Top of Page