00001 // 00002 // (C) 2005 Vojtech Janota 00003 // (C) 2003 Xuan Thang Nguyen 00004 // 00005 // This library is free software, you can redistribute it 00006 // and/or modify 00007 // it under the terms of the GNU Lesser General Public License 00008 // as published by the Free Software Foundation; 00009 // either version 2 of the License, or any later version. 00010 // The library is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00013 // See the GNU Lesser General Public License for more details. 00014 // 00015 00016 #ifndef __INET_LIB_TABLE_ACCESS_H 00017 #define __INET_LIB_TABLE_ACCESS_H 00018 00019 #include <omnetpp.h> 00020 #include "ModuleAccess.h" 00021 #include "LIBTable.h" 00022 00023 00027 class INET_API LIBTableAccess : public ModuleAccess<LIBTable> 00028 { 00029 public: 00030 LIBTableAccess() : ModuleAccess<LIBTable>("libTable") {} 00031 }; 00032 00033 #endif 00034