00001 /******************************************************************************* 00002 ** Copyright (c) 1998 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00009 #pragma once 00010 00011 #include "lcPdu.h" 00012 00016 class DT_DLL_LOGGERCONTROL DtLgrEofActionPdu : public DtLgrControlPdu 00017 { 00018 public: 00019 00021 DtLgrEofActionPdu( DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00022 00024 DtLgrEofActionPdu( const DtNetLgrControlPdu* initial, 00025 DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00026 00028 DtLgrEofActionPdu( const DtEntityIdentifier& sender, 00029 const DtEntityIdentifier& receiver, DtLgrMode mode, 00030 DtBufferPtr buffer = DtUSE_INTERNAL_BUFFER ); 00031 00033 virtual ~DtLgrEofActionPdu(); 00034 00036 DtLgrEofActionPdu( const DtLgrEofActionPdu& src ); 00037 00039 DtLgrEofActionPdu& operator=( const DtLgrEofActionPdu& src ); 00040 00042 virtual DtLgrMode action() const; 00043 virtual void setAction( DtLgrMode cmd ); 00044 00046 virtual DtLgrIntParams* params() const; 00047 00048 private: 00050 DtLgrMode myAction; 00051 }; 00052