00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: router.cc 00005 * 00006 * Description: 00007 * 00008 * Version: 1.0 00009 * Created: 02/19/2010 01:56:36 AM 00010 * Revision: none 00011 * Compiler: gcc 00012 * 00013 * Author: Mitchelle Rasquinha (), mitchelle.rasquinha@gatech.edu 00014 * Company: Georgia Institute of Technology 00015 * 00016 * ===================================================================================== 00017 */ 00018 #ifndef _router_cc_INC 00019 #define _router_cc_INC 00020 00021 #include "router.h" 00022 using namespace std; 00023 00024 00025 string 00026 Router::toString () const 00027 { 00028 stringstream str; 00029 str << "Router" << endl; 00030 return str.str() ; 00031 } /* ----- end of method Router::toString ----- */ 00032 00033 #endif /* ----- #ifndef _router_cc_INC ----- */