|
INET Framework for OMNeT++/OMNEST
|
00001 #ifndef __INET_OSPFNEIGHBORSTATELOADING_H 00002 #define __INET_OSPFNEIGHBORSTATELOADING_H 00003 00004 #include "AnsaOSPFNeighborState.h" 00005 00006 namespace AnsaOSPF { 00007 00008 class NeighborStateLoading : public NeighborState 00009 { 00010 public: 00011 virtual void ProcessEvent(Neighbor* neighbor, Neighbor::NeighborEventType event); 00012 virtual Neighbor::NeighborStateType GetState(void) const { return Neighbor::LoadingState; } 00013 }; 00014 00015 } // namespace AnsaOSPF 00016 00017 #endif // __INET_OSPFNEIGHBORSTATELOADING_H 00018