//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:
//      See corresponding header file.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#include "bisupstate_awaitreleaseresp.h"

bisupAwaitReleaseResp *bisupAwaitReleaseResp :: _only = 0;

bisupAwaitReleaseResp *bisupAwaitReleaseResp :: instance(void)
{
    if (_only == 0)
    {
        _only = new bisupAwaitReleaseResp;
    }
    return _only;
}

bisupAwaitReleaseResp :: bisupAwaitReleaseResp(void)
    : bisupState()
{
    return;
}

bisupAwaitReleaseResp :: ~bisupAwaitReleaseResp(void)
{
    return;
}

void bisupAwaitReleaseResp :: sigRELEASErespAct(
    sigRELEASEresp *primitive_,
    pfProtocol *protocol_)
{
    bisupProtocol *protocol = protocolCast(protocol_);
    protocol->sendRLCpduToDown(primitive_);
    protocol->finalClearing();
    return;
}
