[root] / trunk / core / base / inc / TFolder.h Repository:
ViewVC logotype

Log of /trunk/core/base/inc/TFolder.h

Parent Directory Parent Directory


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

Revision 27436 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Feb 12 14:54:52 2009 UTC (5 years, 11 months ago) by rdm
File length: 2894 byte(s)
Diff to previous 22961
fix problem with wildcard handling in TFolder::ls() causing errors like:
Error in <TRegexp::Index>: Bad Regular Expression

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 2896 byte(s)
Diff to previous 20877
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/inc/TFolder.h
File length: 2896 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/base/inc/TFolder.h
File length: 2896 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/base/inc/TFolder.h
File length: 2944 byte(s)
Diff to previous 16589
remove :$ from tag line

Revision 16589 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 20 21:07:40 2006 UTC (8 years, 3 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2954 byte(s)
Diff to previous 16555
Add an optional argument Option_t *option="" to all SaveAs functions.

Revision 16555 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 19 10:58:25 2006 UTC (8 years, 3 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2934 byte(s)
Diff to previous 6076
Make all SaveAs functions const.

Revision 6076 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Feb 9 18:35:17 2003 UTC (11 years, 11 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2928 byte(s)
Diff to previous 5518
Add a new constructor to class TFolder.
   TFolder(const char* name, const char* title)
This constructor creates a default collection of type TList.

Revision 5518 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 31 07:27:37 2002 UTC (12 years, 2 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2878 byte(s)
Diff to previous 3740
Make const all Copy functions.
WARNING: If your class implements a Copy function deriving
from TObject or one of the ROOT classes, you must make
your Copy function const.

Revision 3740 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 23 15:48:05 2002 UTC (13 years ago) by rdm
Original Path: trunk/base/inc/TFolder.h
File length: 2873 byte(s)
Diff to previous 3581
add TList.h where needed (so these classes compile fine if we decide to
remove TList.h from TNamed.h).

Revision 3581 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 4 10:20:05 2002 UTC (13 years ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2859 byte(s)
Diff to previous 2535
Implememt logic for TFolder ownership.
A folder ownership can be set in two ways:
 - by calling TFolder::SetOwner
 - by calling TCollection::SetOwner on the collection specified in TFolder::AddFolder

Revision 2535 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jul 6 13:22:42 2001 UTC (13 years, 6 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2897 byte(s)
Diff to previous 1866
Add new function TFolder::saveAs(cont char* filename)
// Save all objects in this folder in filename
// Each object in this folder will have a key in the file where the name of
// the key will be the name of teh object.

Revision 1866 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 29 10:53:42 2001 UTC (13 years, 9 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2831 byte(s)
Diff to previous 1205
Add a protection in function FindObjectAny.
Add a new function TFolder::Occurence returning the occurence number of an object
in a folder in case multiple objects have the same name.

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/base/inc/TFolder.h
File length: 2771 byte(s)
Diff to previous 648
      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 648 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 13 12:36:07 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2753 byte(s)
Diff to previous 618
Change default option in TFolder::ls from "" to "*"

Revision 618 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 11 06:19:57 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2752 byte(s)
Diff to previous 607
Implement the functions FindObject, FindObjectAny and new functions
FindFullPathname.

Revision 607 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 8 07:38:33 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2666 byte(s)
Diff to previous 583
Several changes and new functions added. The folder service now added
to TROOT and several other Root classes.

Revision 583 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 6 09:29:20 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2573 byte(s)
Diff to previous 577
minor changes for CVS headers

Revision 577 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 11:21:06 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2494 byte(s)
Diff to previous 565
Implement TFolder::FindObject(Tobject *obj) const to make SGI/CC compiler happy

Revision 565 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 09:14:08 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2439 byte(s)
Diff to previous 556
Several changes in the new class TFolder.
The constructor has an additional parameter to specify an existing
collection.
A new function TFolder::AddFolder has been added.

Revision 556 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Sep 4 10:44:42 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TFolder.h
File length: 2222 byte(s)
Add new class TFolder

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