00001 #ifndef BRIDGEC_H
00002 #define BRIDGEC_H
00003
00004 #include "oaw/misc/msgpipedes.h"
00005
00006
00007 #include "../oawconfig.h"
00008
00009 OAW_BEGIN_NAMESPACE
00010
00011 class byteArray;
00012
00013 typedef byteArray* byteArray_ptr;
00014
00015 class BridgeC
00016 {
00017 public:
00018 BridgeC(){}
00019 virtual ~Bridge(){}
00020 virtual void GetData(byteArray_ptr){}
00021 virtual void SetData(byteArray_ptr){}
00022 };
00023
00024 OAW_END_NAMESPACE
00025
00026
00027 #endif
00028
00029
00030
00031
00032