29 lines
575 B
C++
29 lines
575 B
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2000.
|
|
//
|
|
// File: N E T W O R K M A N A G E R . C P P
|
|
//
|
|
// Contents: Fetches list of available networks
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: mbend 24 Oct 2000
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "pch.h"
|
|
#pragma hdrstop
|
|
#include "NetworkManager.h"
|
|
|
|
|
|
CNetworkManager::CNetworkManager()
|
|
{
|
|
}
|
|
|
|
CNetworkManager::~CNetworkManager()
|
|
{
|
|
}
|
|
|