00001 /****************************************************************************** 00002 ** Copyright (c) 2005 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 00008 00009 #pragma once 00010 00011 #include "loggerControlDefines.h" 00012 #include "lcPdu.h" 00013 00017 class DT_DLL_LOGGERCONTROL DtLgrEmptyPdu : public DtLgrControlPdu 00018 { 00019 public: 00020 00022 DtLgrEmptyPdu( DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00023 00025 DtLgrEmptyPdu( const DtNetLgrControlPdu* initial, 00026 DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00027 00029 DtLgrEmptyPdu( const DtEntityIdentifier& sender, 00030 const DtEntityIdentifier& receiver, 00031 DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00032 00034 virtual ~DtLgrEmptyPdu(); 00035 00037 DtLgrEmptyPdu( const DtLgrEmptyPdu& src ); 00038 00040 DtLgrEmptyPdu& operator=( const DtLgrEmptyPdu& src ); 00041 }; 00042