//===========================================================================// // File: cmpnnt.cc // // Project: MUNGA Brick: Entity // // Contents: // //---------------------------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 12/14/94 ECH Initial coding. // //---------------------------------------------------------------------------// // Copyright (C) 1994-1995, Virtual World Entertainment, Inc. // // All Rights reserved worldwide // // This unpublished sourcecode is PROPRIETARY and CONFIDENTIAL // //===========================================================================// #include "AdeptHeaders.hpp" #include "AttributeWatcher.hpp" //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // void AttributeWatcherOf::InitializeClass() { Verify(!DefaultData); DefaultData = new ClassData( AttributeWatcherOfIntClassID, "Adept::AttributeWatcherOfInt", BaseClass::DefaultData, 0, NULL ); Register_Object(DefaultData); } //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // AttributeWatcherOf* AttributeWatcherOf::Make( MemoryStream *stream, ComponentWeb *owning_web, Entity *entity ) { AttributeWatcherOf* watcher = new AttributeWatcherOf( DefaultData, stream, owning_web, entity ); return watcher; }