//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n8.h
//
//Version: $Revision: 1.6 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/12/10 15:17:47 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//      Sami Raatikainen (based on version 1.5)
//
//Description:
//      State Connect Request (N8)
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_N8_H__
#define __UNI_UNISTATE_N8_H__

#include "unistate.h"
#include "protocol/sig/sigstate_networkconnectrequest.h"

class uniNetworkConnectRequest : public uniState, 
                                 public sigNetworkConnectRequest
{
    public:
        static uniNetworkConnectRequest *instance(void);
        
    protected:
        uniNetworkConnectRequest(void);
        virtual ~uniNetworkConnectRequest(void);

    private:
        static uniNetworkConnectRequest *_only;
};

#endif // __UNI_UNISTATE_N8_H__
