Warning, file /include/root/TFriendProxy.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TFriendProxy
0013 #define ROOT_TFriendProxy
0014
0015 #include "TBranchProxyDirector.h"
0016
0017 class TTree;
0018
0019 namespace ROOT {
0020 namespace Internal {
0021
0022 class TFriendProxy {
0023 protected:
0024 TBranchProxyDirector fDirector;
0025 Int_t fIndex;
0026
0027 public:
0028 TFriendProxy();
0029 TFriendProxy(TBranchProxyDirector *director, TTree *main, Int_t index);
0030
0031 TBranchProxyDirector *GetDirector() { return &fDirector; }
0032
0033 Long64_t GetReadEntry() const;
0034 void ResetReadEntry();
0035 void Update(TTree *newmain);
0036 };
0037
0038 }
0039 }
0040
0041 #endif