Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1997 - 1997
//
// File: expand.h
//
//--------------------------------------------------------------------------
//
// expand.h: Declarations for network CI expansion
//
#ifndef _EXPAND_H_
#define _EXPAND_H_
#include "gmobj.h"
////////////////////////////////////////////////////////////////////
// class GOBJMBN_MBNET_EXPANDER:
// An MBNET modifier which performs CI expansion on a network
////////////////////////////////////////////////////////////////////
class GOBJMBN_MBNET_EXPANDER : public MBNET_MODIFIER { public: GOBJMBN_MBNET_EXPANDER ( MBNET & model ); virtual ~ GOBJMBN_MBNET_EXPANDER ();
virtual INT EType () const { return EBNO_MBNET_EXPANDER; }
// Perform any creation-time operations
void Create (); // Perform any special destruction
void Destroy (); // Return true if no modidfications were performed.
bool BMoot ();
protected:
PROPMGR _propmgr;
int _cNodesExpanded; int _cNodesCreated; int _cArcsCreated;
protected: void Expand ( GNODEMBND & gndd );
static const VLREAL * PVlrLeak ( const BNDIST & bndist ); };
#endif // _EXPAND_H_
|