//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SIG
//
//File: sigstate_null.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/09 15:18:21 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Sami Raatikainen
//
//Description:
//      Implements the following signalling states based on Q.2931:
//      UserNull, NetworkNull, and Idle state for BISUP.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __SIG_SIGSTATE_NULL_H__
#define __SIG_SIGSTATE_NULL_H__

#include "pf/exception.h"

#include "sigstate.h"

class sigNull : public sigState
{
    public:
        static sigNull *instance(void);

        virtual void sigSETUPreqAct(sigSETUPreq *primitive_,
                                    pfProtocol *protocol_);
         
        virtual void sigSETUPindAct(sigSETUPind *primitive_,
                                    pfProtocol *protocol_);


    protected:
        sigNull(void);
        virtual ~sigNull(void);

    private:
        static sigNull *_only;
};

#endif // __SIG_SIGSTATE_NULL_H__
