00001 /* 00002 * Copyright 2003 Michael A. Marsh, Cornell University. All rights reserved. 00003 * This software is released under the modified BSD license. 00004 * See the file LICENSE in the top-level directory for details. 00005 */ 00006 // 00007 // $Id: ServerResponseEvent.cc,v 1.3 2004/05/19 15:56:58 mmarsh Exp $ 00008 // 00009 // $Log: ServerResponseEvent.cc,v $ 00010 // Revision 1.3 2004/05/19 15:56:58 mmarsh 00011 // *** empty log message *** 00012 // 00013 // Revision 1.2 2003/11/04 22:31:51 mmarsh 00014 // *** empty log message *** 00015 // 00016 // 00017 00018 #include "ServerResponseEvent.h" 00019 #include "ServerResponseHandler.h" 00020 00021 using namespace CODEX_Server; 00022 00023 ServerResponseEvent::ServerResponseEvent( 00024 CODEX_Events::Activity* source, 00025 ServerResponseHandler* destination, 00026 const CODEX_Quorum::Message& message, 00027 int server ) : 00028 CODEX_Events::EventBase( source ), 00029 m_destination( destination ), 00030 m_message( message ), 00031 m_server( server ) 00032 { 00033 } 00034 00035 ServerResponseEvent::~ServerResponseEvent() 00036 { 00037 }
1.4.1