//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / gsmpSwitch
//
//File: gsmpSwitchstate.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/03 11:40:43 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//
//
//Copyright:
//
//
//Licence:
//
//
//History: 


#ifndef __GSMPSWITCH_GSMPSWITCHSTATE_H__
#define __GSMPSWITCH_GSMPSWITCHSTATE_H__

#include "pf/state.h"
#include "pf/protocol.h"
#include "protocol/gsmp/gsmpstate.h"
#include "gsmpswitchprotocol.h"

class gsmpMessage;
class pfProtocol;

//
// Class: gsmpState
//
// Description:
//

class gsmpSwitchState : public gsmpState
{
    public:
        virtual void gsmpLinkEstablishedAct(gsmpLinkEstablished *,
                                            pfProtocol *protocol_);
        
        virtual void gsmpLinkNotEstablishedAct(gsmpLinkEstablished *,
                                               pfProtocol *protocol_);

        // Connection Management Messages
        
        // Port Management Messages
        
        // Statistics Messages
        
        // Switch Configuration Messages
  
        // Event Messages
        
        // Adjacency Protocol

        
    protected:
        gsmpSwitchState(void);
        virtual ~gsmpSwitchState(void);
        
};

#endif	// __GSMPSWITCH_GSMPSWITCHSTATE_H__


