00001 /********************************************************************** 00002 ** This program is part of 'MOOSE', the 00003 ** Messaging Object Oriented Simulation Environment. 00004 ** Copyright (C) 2003-2013 Upinder S. Bhalla. and NCBS 00005 ** It is made available under the terms of the 00006 ** GNU Lesser General Public License version 2.1 00007 ** See the file COPYING.LIB for the full notice. 00008 **********************************************************************/ 00009 00010 #ifndef _MSG_DIGEST_H 00011 #define _MSG_DIGEST_H 00012 00021 class MsgDigest 00022 { 00023 public: 00024 MsgDigest( const OpFunc* f, const vector< Eref >& t ) 00025 : func( f ), targets( t ) 00026 {;} 00027 const OpFunc* func; 00028 vector< Eref > targets; 00029 }; 00030 00031 #endif // _MSG_DIGEST_H