00001
#ifndef acscomponentTestImpl_h
00002
#define acscomponentTestImpl_h
00003
00004
00005
#ifndef __cplusplus
00006
#error This is a C++ include file and cannot be used from plain C
00007
#endif
00008
00009
00010
#include <acscomponentImpl.h>
00011
00012
#include <acscomponentTestS.h>
00013
00014 class ACSComponentTestClassImpl:
public virtual acscomponent::ACSComponentImpl,
00015
public virtual POA_ACSCOMPONENT_TEST::ACSComponentTestClass
00016 {
00017
00018
public:
00019
00020
ACSComponentTestClassImpl(
const ACE_CString& name,
00021
maci::ContainerServices *);
00022
00023
virtual ~ACSComponentTestClassImpl();
00024
00025
void shutdown();
00026
00027 };
00028
00029
#endif
00030
00031
00032
00033
00034