00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: processor.cc 00005 * 00006 * Description: 00007 * 00008 * Version: 1.0 00009 * Created: 02/19/2010 01:51:32 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 _processor_cc_INC 00019 #define _processor_cc_INC 00020 #include "processor.h" 00021 00022 Processor::Processor () 00023 { 00024 type = NetworkComponent::processor; 00025 } 00026 00027 Processor::~Processor () 00028 { 00029 } 00030 00031 string Processor::toString() const 00032 { 00033 stringstream str; 00034 str << " Processor" << endl; 00035 return str.str(); 00036 } 00037 00038 void 00039 Processor::init() 00040 { 00041 00042 } 00043 #endif /* ----- #ifndef _processor_cc_INC ----- */ 00044