/usr/include/root/TLeafObject.h is in libroot-tree-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | // @(#)root/tree:$Id$
// Author: Rene Brun 27/01/96
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TLeafObject
#define ROOT_TLeafObject
//////////////////////////////////////////////////////////////////////////
// //
// TLeafObject //
// //
// A TLeaf for a general object derived from TObject. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif
#ifndef ROOT_TClassRef
#include "TClassRef.h"
#endif
class TClass;
class TMethodCall;
class TLeafObject : public TLeaf {
protected:
TClassRef fClass; //! pointer to class
void **fObjAddress; //! Address of Pointer to object
Bool_t fVirtual; // Support for polymorphism, when set classname is written with object.
public:
enum { kWarn = BIT(12) };
TLeafObject();
TLeafObject(TBranch *parent, const char *name, const char *type);
virtual ~TLeafObject();
virtual void FillBasket(TBuffer &b);
TClass *GetClass() const {return fClass;}
TMethodCall *GetMethodCall(const char *name);
TObject *GetObject() const {return (TObject*)(*fObjAddress);}
const char *GetTypeName() const ;
virtual void *GetValuePointer() const {return fObjAddress;}
Bool_t IsOnTerminalBranch() const;
Bool_t IsVirtual() const {return fVirtual;}
virtual Bool_t Notify();
virtual void PrintValue(Int_t i=0) const;
virtual void ReadBasket(TBuffer &b);
virtual void SetAddress(void *add=0);
virtual void SetVirtual(Bool_t virt=kTRUE) {fVirtual=virt;}
ClassDef(TLeafObject,4); //A TLeaf for a general object derived from TObject.
};
#endif
|