00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: arbiter.h 00005 * 00006 * Description: 00007 * 00008 * Version: 1.0 00009 * Created: 02/19/2010 01:01:53 AM 00010 * Revision: none 00011 * Compiler: gcc 00012 * 00013 * Author: Mitchelle Rasquinha 00014 * Company: Georgia Institute of Technology 00015 * 00016 * ===================================================================================== 00017 */ 00018 #ifndef _arbiter_h_INC 00019 #define _arbiter_h_INC 00020 00021 #include "../../data_types/impl/flit.h" 00022 #include "networkComponent.h" 00023 #include <vector> 00024 00025 using namespace std; 00026 00027 /* 00028 * ===================================================================================== 00029 * Class: Arbiter 00030 * Description: 00031 * ===================================================================================== 00032 */ 00033 class Arbiter 00034 { 00035 public: 00036 Arbiter (){} /* constructor */ 00037 00038 protected: 00039 00040 private: 00041 00042 }; /* ----- end of class Arbiter ----- */ 00043 00044 #endif /* ----- #ifndef _arbiter_h_INC ----- */