#ifndef ROOT_TBranchProxyDescriptor
#define ROOT_TBranchProxyDescriptor
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
namespace ROOT {
   class TBranchProxyDescriptor : public TNamed {
      TString fDataName;
      TString fBranchName;
      Bool_t fIsSplit;
   public:
      TBranchProxyDescriptor(const char *dataname, const char *type,
                             const char *branchname, Bool_t split = true);
      const char *GetDataName();
      const char *GetTypeName();
      const char *GetBranchName();
      Bool_t IsEquivalent(const TBranchProxyDescriptor *other, Bool_t inClass = kFALSE);
      Bool_t IsSplit() const;
      void OutputDecl(FILE *hf, int offset, UInt_t maxVarname);
      void OutputInit(FILE *hf, int offset, UInt_t maxVarname,
                      const char *prefix);
      ClassDef(TBranchProxyDescriptor,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.