//===========================================================================// // File: network.hh // // Project: MUNGA Brick: Network Manager // // Contents: Interface specification for network brick // //---------------------------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 11/01/94 JMA Initial coding. // // 11/03/94 ECH Made compatible with BC4.0 // // 11/03/94 ECH Changed NetworkClient to inherit from Node // //---------------------------------------------------------------------------// // Copyright (C) 1994-1995, Virtual World Entertainment, Inc. // // PROPRIETARY AND CONFIDENTIAL // //===========================================================================// #if !defined(HOSTID_HPP) # define HOSTID_HPP # if !defined(STYLE_HPP) # include # endif // //--------------------------------------------------- // Support types for host manager //--------------------------------------------------- // typedef Enumeration HostID; const HostID NullHostID = 0; const HostID MapHostID = -1; const HostID FirstLegalHostID = 1; #endif