ROOT logo
// $Id: ZIdentity.h 2456 2010-10-17 18:31:40Z 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_ZIdentity_H
#define GledCore_ZIdentity_H

#include <Glasses/ZGlass.h>
class ZHashList;

class ZIdentity : public ZGlass
{
  MAC_RNR_FRIENDS(ZIdentity);

  friend class ZSunQueen;

private:
  void _init();

protected:
  ZLink<ZHashList>		mActiveMEEs;	// X{gS} L{}

  ZLink<ZMirFilter>		mAllowThis;	// X{gS} L{}

public:
  ZIdentity(const Text_t* n="ZIdentity", const Text_t* t=0) : ZGlass(n,t) { _init(); }

  virtual void AdEnlightenment();

#include "ZIdentity.h7"
  ClassDef(ZIdentity, 1); // Representation of a user identity
}; // endclass ZIdentity


#endif
 ZIdentity.h:1
 ZIdentity.h:2
 ZIdentity.h:3
 ZIdentity.h:4
 ZIdentity.h:5
 ZIdentity.h:6
 ZIdentity.h:7
 ZIdentity.h:8
 ZIdentity.h:9
 ZIdentity.h:10
 ZIdentity.h:11
 ZIdentity.h:12
 ZIdentity.h:13
 ZIdentity.h:14
 ZIdentity.h:15
 ZIdentity.h:16
 ZIdentity.h:17
 ZIdentity.h:18
 ZIdentity.h:19
 ZIdentity.h:20
 ZIdentity.h:21
 ZIdentity.h:22
 ZIdentity.h:23
 ZIdentity.h:24
 ZIdentity.h:25
 ZIdentity.h:26
 ZIdentity.h:27
 ZIdentity.h:28
 ZIdentity.h:29
 ZIdentity.h:30
 ZIdentity.h:31
 ZIdentity.h:32
 ZIdentity.h:33
 ZIdentity.h:34
 ZIdentity.h:35
 ZIdentity.h:36
 ZIdentity.h:37