// $Id: ZNodeLink.h 2088 2008-11-23 20:26:46Z matevz $ // Copyright (C) 1999-2008, 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: ZLink mLens; // X{gS} L{} RnrBits{0,4,0,0, 0,0,0,5} public: ZNodeLink(const Text_t* n="ZNodeLink", const Text_t* t=0) : ZNode(n,t) { _init(); } #include "ZNodeLink.h7" ClassDef(ZNodeLink, 1); }; // endclass ZNodeLink #endif