Content-Based Networking Simulation Library Documentation (v. 1.2.1) |
00001 // -*- C++ -*- 00002 // 00003 // This file is part of CBNSIM, the Content-Based Networking 00004 // Simulation Library. 00005 // 00006 // Authors: See the file AUTHORS for full details. 00007 // 00008 // Copyright (C) 2002-2004 University of Colorado 00009 // 00010 // This program is free software; you can redistribute it and/or 00011 // modify it under the terms of the GNU General Public License 00012 // as published by the Free Software Foundation; either version 2 00013 // of the License, or (at your option) any later version. 00014 // 00015 // This program is distributed in the hope that it will be useful, 00016 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 // GNU General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU General Public License 00021 // along with this program; if not, write to the Free Software 00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, 00023 // USA, or send email to serl@cs.colorado.edu. 00024 // 00025 // $Id: SendMessageWNP.h,v 1.4 2004/04/19 05:26:16 rutherfo Exp $ 00026 // 00027 #ifndef CBNSIM_SENDMESSAGEWPN_H 00028 #define CBNSIM_SENDMESSAGEWPN_H 00029 00030 #include <siena/ssbg.h> 00031 #include "cbnsim/WorkloadNodeProcess.h" 00032 00033 namespace cbnsim 00034 { 00037 class SendMessageWNP : public WorkloadNodeProcess 00038 { 00039 public: 00042 SendMessageWNP( unsigned int nid, std::ostream& out, ssbg::SSBG& ssbg, unsigned int delay, 00043 bool isconst); 00044 00047 void init(); 00048 00052 void process_event( const ssim::Event* evt ); 00053 00054 private: 00055 std::ostream & output_attr( std::ostream& out, 00056 const std::string& x, 00057 const std::string& o, 00058 const std::string& v) 00059 { 00060 return out << x << ' ' << o << ' ' << '"' << v << '"'; 00061 } 00062 00063 template<class T> 00064 std::ostream & output_attr(std::ostream & out, 00065 const std::string & x, 00066 const std::string & o, 00067 T v ) 00068 { 00069 return out << x << ' ' << o << ' ' << v; 00070 } 00071 00072 void print( const ssbg::notification& ); 00073 00074 unsigned int m_delay; 00075 ssbg::SSBG& m_ssbg; 00076 ssbg::notification m_notif; 00077 bool m_const; 00078 }; 00079 }; 00080 00081 #endif
Copyright © 2001-2004 University of Colorado.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". This documentation is authored and maintained by Matthew J. Rutherford |