00001
#ifndef __cplusplus
00002
#error This is a C++ include file and cannot be used from plain C
00003
#endif
00004
00005
#ifndef _SIMPLE_EXAMPLE_DDS_H_
00006 #define _SIMPLE_EXAMPLE_DDS_H
00007
00008
#include <acscomponentImpl.h>
00009
00010
#include "SimpleExampleS.h"
00011
00012 class SimpleExampleDDSImpl:
00013
virtual public POA_DDS_SIMPLE_EXAMPLE::simpleExample,
00014
virtual public acscomponent::ACSComponentImpl
00015 {
00016
public:
00017
SimpleExampleDDSImpl(
const ACE_CString &name,
00018
maci::ContainerServices *containerServices);
00019
00020
virtual void sendMessage()
00021
throw (CORBA::SystemException);
00022
00023
virtual ~SimpleExampleDDSImpl();
00024 };
00025
00026
#endif