INET Framework for OMNeT++/OMNEST
AnsaOSPFNeighborStateDown.h
Go to the documentation of this file.
00001 #ifndef __INET_OSPFNEIGHBORSTATEDOWN_H
00002 #define __INET_OSPFNEIGHBORSTATEDOWN_H
00003 
00004 #include "AnsaOSPFNeighborState.h"
00005 
00006 namespace AnsaOSPF {
00007 
00008 class NeighborStateDown : public NeighborState
00009 {
00010 public:
00011     virtual void ProcessEvent(Neighbor* neighbor, Neighbor::NeighborEventType event);
00012     virtual Neighbor::NeighborStateType GetState(void) const { return Neighbor::DownState; }
00013 };
00014 
00015 } // namespace AnsaOSPF
00016 
00017 #endif // __INET_OSPFNEIGHBORSTATEDOWN_H
00018