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