//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SIG
//
//File: sigstate_calldelivered.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/11/13 10:56:07 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      State Call Delivered (Q.2931, BISUP)
//      Implements Call Delivered state of the user side, or
//      Call Received state at the network side.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SIG_SIGSTATE_CALLDELIVERED_H__
#define __SIG_SIGSTATE_CALLDELIVERED_H__

#include "sigstate.h"

class sigCallDelivered : public sigState
{
    public:
        static sigCallDelivered *instance(void);
        
        virtual void sigSETUPconfAct(
            sigSETUPconf *primitive_,
            pfProtocol *protocol_);
        
        virtual void sigAwaitCONNECTtimeoutAct(
            pfProtocol *protocol_);
        
    protected:
        sigCallDelivered(void);
        virtual ~sigCallDelivered(void);
        
    private:
        static sigCallDelivered *_only;
};

#endif // __SIG_SIGSTATE_CALLDELIVERED_H__
