//Editor-Info: -*- C++ -*-
//
//Subject:
//
//File:
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1999/03/08 07:42:31 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __BISUP_BISUPSTATE_AWAITRLC_H__
#define __BISUP_BISUPSTATE_AWAITRLC_H__

#include "bisupstate.h"

class bisupAwaitRLC : public bisupState
{
    public:
        static bisupAwaitRLC *instance(void);
        
        virtual void nniRELpduAct(
            nniRELpdu *primitive_,
            pfProtocol *protocol_);
        
        virtual void nniRLCpduAct(
            nniRLCpdu *primitive_,
            pfProtocol *protocol_);
        
        virtual void bisupT1bTimeoutAct(
            pfProtocol *protocol_);
        
    protected:
        bisupAwaitRLC(void);
        virtual ~bisupAwaitRLC(void);
        
    private:
        static bisupAwaitRLC *_only;
};

#endif // __BISUP_BISUPSTATE_AWAITRLC_H__
