[root] / trunk / graf3d / g3d / inc / TNode.h Repository:
ViewVC logotype

Log of /trunk/graf3d/g3d/inc/TNode.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 23140 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 11 11:01:39 2008 UTC (6 years, 9 months ago) by rdm
File length: 4970 byte(s)
Diff to previous 20882
move the following directories to "graf2d":

asimage, freetype, gpad, graf, postscript, qt, win32gdk, x11, x11ttf

move the following directories to "graf3d":

eve, ftgl, g3d, gl, x3d

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/g3d/inc/TNode.h
File length: 4970 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/g3d/inc/TNode.h
File length: 4970 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/g3d/inc/TNode.h
File length: 5016 byte(s)
Diff to previous 15134
remove :$ from tag line

Revision 15134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 04:47:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 5026 byte(s)
Diff to previous 13351
From Federico Carminati:

"I have implemented all copy and equal operators needed to silence all
warnings in AliRoot, as requested. I have implemented shallow copies as
would do the default operators synthetized by the compiler.
Most operators are protected. If users complain, you just have to move
them into the public area, but class derivation is of course supported.
It has been a terrible job, I have modified 278 files, but the changes
are backward compabile, and this goes a long way to permitting user to
use the effc++ flag with root headers."

Revision 13351 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 24 17:28:07 2005 UTC (9 years, 2 months ago) by couet
Original Path: trunk/g3d/inc/TNode.h
File length: 4965 byte(s)
Diff to previous 2764
- Coding conventions.

Revision 2764 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 29 10:35:39 2001 UTC (13 years, 4 months ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4975 byte(s)
Diff to previous 1719
  Currently in TNode.h there is the declaration & definition for the
method to change a TNode's parent, e.g.:

   virtual void        SetParent(TNode *parent) {fParent=parent;}

But this does only half the work necessary.  The parent losing the
custody battle is never informed and continues to think they have
this child.
The function SetParent has been moved from the TNode.h to TNode.cxx.
The new function (thanks to Robert Hatcher) updates the parent node as well.

Revision 1719 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 28 11:04:07 2001 UTC (13 years, 10 months ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4992 byte(s)
Diff to previous 1349
More changes (hopefully last cleanup) introducing constness in the API.

Revision 1349 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 12 08:27:11 2001 UTC (14 years ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4956 byte(s)
Diff to previous 1205
Rename function SetObject(const char*name, const char *title) to SetNameTitle.
This avoids several compiler warnings in classes defining SetObject(TObject *obj).

Revision 1205 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 13 15:13:57 2000 UTC (14 years, 1 month ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4953 byte(s)
Diff to previous 937
      W A R N I N G   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     ==================================================================
A very long list of changes in this pre-release of version 3.00.
We have modified the signature of many functions (in particular TObject)
to introduce more constness in the system.
You must change your code if your class derives from TObject and uses
one of the modified functions such as ls, Print, Compare, Hash, etc.
The modified functions in TObject have the following signature:
   virtual TObject    *Clone() const;
   virtual Int_t       Compare(const TObject *obj) const;
   virtual void        Delete(Option_t *option=""); // *MENU*
   virtual void        DrawClass() const; // *MENU*
   virtual void        DrawClone(Option_t *option="") const; // *MENU*
   virtual void        Dump() const; // *MENU*
   virtual TObject    *FindObject(const TObject *obj) const;
   virtual char       *GetObjectInfo(Int_t px, Int_t py) const;
   virtual ULong_t     Hash() const;
   virtual void        Inspect() const; // *MENU*
   virtual Bool_t      IsEqual(const TObject *obj) const;
   virtual void        ls(Option_t *option="") const;
   virtual void        Print(Option_t *option="") const;

A similar operation has been done with classes such as TH1, TVirtualPad,
TTree, etc.

Revision 937 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Nov 21 20:13:10 2000 UTC (14 years, 2 months ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4894 byte(s)
Diff to previous 568
Increment class version from 2 to 3

Revision 568 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 09:21:24 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/g3d/inc/TNode.h
File length: 4897 byte(s)
Diff to previous 3
The following headers and classes have been modified to take into account;
  - the new signature of IsFolder (now const)
  - the new TObject::FindObject
  - the fact that the static functions of TObject have been moved to TROOT.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/g3d/inc/TNode.h
File length: 4840 byte(s)
Copied from: branches/rdm/g3d/inc/TNode.h revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/g3d/inc/TNode.h
File length: 4840 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9