00001 #ifndef _ACSERRTEST_IMPL_H_
00002 #define _ACSERRTEST_IMPL_H_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef __cplusplus
00032 #error This is a C++ include file and cannot be used from plain C
00033 #endif
00034
00035 #include "acserrTestS.h"
00036 #include "acserr.h"
00037
00038 class acserrTestImpl : public POA_acserrTest {
00039 public:
00040 acserrTestImpl(acserrTest* dest, const char *sn);
00041
00042 ACSErr::Completion * testNoError (
00043 ) throw ( CORBA::SystemException);
00044
00045 ACSErr::Completion * testDefaultError (
00046 ) throw ( CORBA::SystemException);
00047
00048 ACSErr::Completion * test ( CORBA::Long depth,
00049 CORBA::Boolean err
00050
00051 ) throw ( CORBA::SystemException);
00052
00053
00054 void testExceptions ( CORBA::Long depth,
00055 CORBA::Boolean err
00056
00057 ) throw ( CORBA::SystemException
00058 , ACSErrTypeTest::ACSErrTest0Ex
00059 , ACSErr::ACSException );
00060
00061
00062 CompletionImpl* f1 (int depth, bool iserr);
00063
00064 void f2(int depth, bool isErr);
00065
00066
00067 void shutdown( )
00068 throw (CORBA::SystemException );
00069
00070 protected:
00071 acserrTest_var dest;
00072 int depth;
00073 const char *srvName;
00074 };
00075
00076 #endif