00001 #ifndef _ACSERROLDTEST_IMPL_H_
00002 #define _ACSERROLDTEST_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 "acserrOldTestS.h"
00036 #include "acserr.h"
00037
00038 class acserrOldTestImpl : public POA_acserrOldTest {
00039 public:
00040 acserrOldTestImpl(acserrOldTest* dest, const char *sn);
00041
00042 ACSErr::ErrorTrace * testNoError (
00043 ) throw ( CORBA::SystemException);
00044
00045 ACSErr::ErrorTrace * test ( CORBA::Long depth,
00046 CORBA::Boolean err
00047
00048 ) throw ( CORBA::SystemException);
00049
00050
00051 void testExceptions ( CORBA::Long depth,
00052 CORBA::Boolean err
00053
00054 ) throw ( CORBA::SystemException,
00055 ACSErr::ACSException );
00056
00057 ACSError* f1 (int depth, bool iserr);
00058
00059 void f2(int depth, bool isErr);
00060
00061
00062 void shutdown( )
00063 throw (
00064 CORBA::SystemException
00065 ) ;
00066 protected:
00067 acserrOldTest_var dest;
00068 int depth;
00069 const char *srvName;
00070 };
00071
00072 #endif