//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: 
//
//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:
//
//
//Description:
//      Message class ude by gsnProtocol
//
//Copyright:
//
//
//Licence:
//
//
//History: 
#ifndef __GSMPSWITCH_GSN_MESSAGE_H__
#define __GSMPSWITCH_GSN_MESSAGE_H__

#include "pf/transp.h"

class pfProtocol;

class gsnDisconnectMessage : public pfTransporter
{
    public:
	gsnDisconnectMessage(void);
	gsnDisconnectMessage(const gsnDisconnectMessage &other_);
	virtual ~gsnDisconnectMessage(void);

        //luodaan disc-viesti, joka
	static gsnDisconnectMessage createDisconnectMessage(void);

        virtual void atProtocol(pfProtocol *protocol_);

};

#endif // __GSMPSWITCH_GSN_MESSAGE_H__





