//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n8.cpp
//
//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: 

#include "unistate_n8.h"

uniNetworkConnectRequest *uniNetworkConnectRequest :: _only = 0;

uniNetworkConnectRequest *uniNetworkConnectRequest :: instance(void)
{
    if (_only == 0)
    {
        _only = new uniNetworkConnectRequest;
    }
    return _only;
}

uniNetworkConnectRequest :: uniNetworkConnectRequest(void)
    : uniState(),
      sigNetworkConnectRequest()
{
    return;
}

uniNetworkConnectRequest :: ~uniNetworkConnectRequest(void)
{
    return;
}
