//===========================================================================// // File: node.cc // // Project: MUNGA Brick: Connection Library // // Contents: Implementation details of Node class // //---------------------------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 09/29/94 ECH Initial coding. // // 10/20/94 JMA Fixed style stuff. // // 10/23/94 ECH Added greater deletion safety // // 10/28/94 JMA Made compatible with SGI CC // // 11/03/94 ECH Made compatible with BC4.0 // // 11/05/94 JMA Made compatible with GNU C++, moved ReleaseSocketLink into // // the virtual data field // // 11/08/94 ECH Made compatible with BC4.0 // // 12/01/94 JMA Made compatible with SGI CC // // 12/12/94 ECH Changed release handler // //---------------------------------------------------------------------------// // Copyright (C) 1994-1995, Virtual World Entertainment, Inc. // // All Rights reserved worldwide // // This unpublished sourcecode is PROPRIETARY and CONFIDENTIAL // //===========================================================================// #include #pragma hdrstop #if !defined(NODE_HPP) #include #endif //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Node ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Node::Node(ClassID class_id): Plug(class_id) { } Node::Node(PlugStream *stream): Plug(stream) { } Node::~Node() { } void Node::ReleaseLinkHandler(Socket*, Plug*) { }