INET Framework for OMNeT++/OMNEST
ansaOspfNeighborState6.h
Go to the documentation of this file.
00001 //
00002 // This program is free software: you can redistribute it and/or modify
00003 // it under the terms of the GNU Lesser General Public License as published by
00004 // the Free Software Foundation, either version 3 of the License, or
00005 // (at your option) any later version.
00006 // 
00007 // This program is distributed in the hope that it will be useful,
00008 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00009 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00010 // GNU Lesser General Public License for more details.
00011 // 
00012 // You should have received a copy of the GNU Lesser General Public License
00013 // along with this program.  If not, see http://www.gnu.org/licenses/.
00014 // 
00015 
00016 #ifndef ANSAOSPFNEIGHBORSTATE6_H_
00017 #define ANSAOSPFNEIGHBORSTATE6_H_
00018 
00019 #include "ansaOspfNeighbor6.h"
00020 
00021 namespace AnsaOspf6 {
00022 
00023 class NeighborState {
00024 protected:
00025    void ChangeState(Neighbor* neighbor, NeighborState* newState, NeighborState* currentState);
00026 
00027 public:
00028    virtual ~NeighborState() {}
00029 
00030    virtual void ProcessEvent(Neighbor* neighbor, Neighbor::NeighborEventType event) = 0;
00031    virtual Neighbor::NeighborStateType GetState(void) const = 0;
00032 };
00033 
00034 }
00035 
00036 #endif /* ANSAOSPFNEIGHBORSTATE6_H_ */