// $Header: /cvs/gled-1.2/GledCore/Glasses/ZNodeLink.h,v 1.6 2005/03/11 17:50:15 matevz Exp $ // Copyright (C) 1999-2005, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #ifndef GledCore_ZNodeLink_H #define GledCore_ZNodeLink_H #include class ZNodeLink : public ZNode { // 7777 RnrCtrl(RnrBits(2,0,6,0, 0,0,0,5)) MAC_RNR_FRIENDS(ZNodeLink); private: void _init() { mLens = 0; } protected: ZGlass* mLens; // X{gS} L{} RnrBits{0,4,0,0, 0,0,0,5} public: ZNodeLink(Text_t* n="ZNodeLink", Text_t* t=0) : ZNode(n,t) {_init();} #include "ZNodeLink.h7" ClassDef(ZNodeLink, 1) }; // endclass ZNodeLink GlassIODef(ZNodeLink); #endif