#ifndef ROOT_TFriendProxyDescriptor
#define ROOT_TFriendProxyDescriptor
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
#ifndef ROOT_TList
#include "TList.h"
#endif
namespace ROOT {
   class TFriendProxyDescriptor : public TNamed {
      Bool_t fDuplicate;
      Int_t  fIndex;
      TList  fListOfTopProxies;
   public:
      TFriendProxyDescriptor(const char *treename, const char *aliasname, Int_t index);
      TFriendProxyDescriptor(const TFriendProxyDescriptor &b) :TNamed(b){;}
      TFriendProxyDescriptor& operator=(const TFriendProxyDescriptor&) {return *this;}
      Int_t  GetIndex() const { return fIndex; }
      TList *GetListOfTopProxies() { return &fListOfTopProxies; }
      Bool_t IsEquivalent(const TFriendProxyDescriptor *other);
      void OutputClassDecl(FILE *hf, int offset, UInt_t maxVarname);
      void OutputDecl(FILE *hf, int offset, UInt_t maxVarname);
      Bool_t IsDuplicate() { return fDuplicate; }
      void   SetDuplicate() { fDuplicate = kTRUE; }
      ClassDef(TFriendProxyDescriptor,0); 
   };
}
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.