//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: ccostate_null.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/11 15:29:33 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//     Function: The authority of the calling party to place this
//     particular call is verified.
//     NOTE: not implemented.
//
//Copyright:
//     University of Technology
//     Laboratory of Telecommunications and Multimedia 
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_O_STATE_AUTH_CALL_SETUP_H__
#define __CC_O_STATE_AUTH_CALL_SETUP_H__

#include "ccostate.h"

class ccOstateAuthorizeCallSetup : public ccOstate
{
    public:
        static ccOstateAuthorizeCallSetup *instance(void);

        void proceed(ccProtocol *protocol_);
        
    protected:
        ccOstateAuthorizeCallSetup(void);
        virtual ~ccOstateAuthorizeCallSetup(void);
        
    private:
        static ccOstateAuthorizeCallSetup *_only;
};

#endif // __CC_O_STATE_AUTH_CALL_SETUP_H__
