//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project/CC
//
//File: ccostate_collect.h
//
//State: $State: Exp $
//
//Version: $Revision: 1.8 $
//
//Date: $Date: 1998/06/11 15:29:33 $
//
//Organisation:
//      University of Technology
// 
//Author:
//      Pasi Nummisalo
//
//Description:
//     Function: initial information package/dialing string being
//     collected from origination party.
//     NOTE: not implemented
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//      
//Licence:
//     
//
//History:
//

#ifndef __CC_O_STATE_COLLECT_H__
#define __CC_O_STATE_COLLECT_H__

#include "ccostate.h"

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

            void proceed(ccProtocol *protocol_);
            
    protected:
            ccOstateCollectInformation(void);
            virtual ~ccOstateCollectInformation(void);

    private:
            static ccOstateCollectInformation *_only;
};

#endif // __CC_O_STATE_COLLECT_H__
