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

#ifndef __SIG_SIGSTATE_RELEASECOLLISION_H__
#define __SIG_SIGSTATE_RELEASECOLLISION_H__

#include "sigstate.h"

class sigReleaseCollision : public sigState
{
    public:
        static sigReleaseCollision *instance(void);
        
        virtual void sigRELEASErespAct(
            sigRELEASEresp *primitive_,
            pfProtocol *protocol_);

        virtual void sigRELEASEconfAct(
            sigRELEASEconf *primitive_,
            pfProtocol *protocol_);

        virtual void sigAwaitRLCtimeoutAct(
            pfProtocol *protocol_);
        
    protected:
        sigReleaseCollision(void);
        virtual ~sigReleaseCollision(void);
        
    private:
        static sigReleaseCollision *_only;
};

#endif // __SIG_SIGSTATE_RELEASECOLLISION_H__
