=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / Bug_3547_Regression / UDPTest_i.cpp
blobb6952f0b116e1fb588b00aac93615f8f665fccbe
1 #include "UDPTest_i.h"
2 #include <ace/Log_Msg.h>
4 unsigned char buf[1000] = {0} ;
6 UDPTest_i::UDPTest_i () : received_send_ (false)
10 UDPTest_i::~UDPTest_i ()
14 void UDPTest_i::send( const ::UDPTestI::BufferT Msg )
16 memcpy( buf, Msg, 1000 );
17 memset( buf, 0, 1000 );
18 received_send_ = true;