00001 /* 00002 * AddressingInterface.h 00003 * 00004 * Created on: Sep 9, 2010 00005 * Author: Karl Wessel 00006 */ 00007 00008 #ifndef ADDRESSINGINTERFACE_H_ 00009 #define ADDRESSINGINTERFACE_H_ 00010 00011 #include <omnetpp.h> 00012 00030 class AddressingInterface { 00031 public: 00033 virtual int myMacAddr(cModule* mac) = 0; 00034 00036 virtual int myNetwAddr(cModule* netw) = 0; 00037 }; 00038 00039 #endif /* ADDRESSINGINTERFACE_H_ */