Log of /trunk/core/base/inc/TSystemDirectory.h
Parent Directory
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: 2904 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
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/base/inc/TSystemDirectory.h
File length: 2903 byte(s)
Diff to
previous 11953
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
11953 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Thu Jun 2 16:28:27 2005 UTC (9 years, 7 months ago) by
brun
Original Path:
trunk/base/inc/TSystemDirectory.h
File length: 2799 byte(s)
Diff to
previous 11924
From Valeriy Onuchin:
- fix methods name conflict (IsDirectory) in TSystemDirectory.h.
Thanks to Christian Stratova who reported about problem with guitest.C ListDir test.
- TPad::Print. Temporary solution to avoid conflict beteween TASImage and QtRoot
- TASImage. Minory mods related to coming FilledEllipse implementation.
Revision
11924 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Tue May 31 18:52:45 2005 UTC (9 years, 7 months ago) by
brun
Original Path:
trunk/base/inc/TSystemDirectory.h
File length: 2780 byte(s)
Diff to
previous 11907
From Valeriy Onuchin:
- TGComboBox. New signal ReturnPressed added which is
emitted when Return key pressed in combo box text entry.
The current text entry string is added to combo box list.
- TSystemDirectory. Move, Delete, Copy methods removed from
context menu (will be implemented later).
Thanks to Ilka for both suggestions.
Revision
5034 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Wed Jul 31 21:59:16 2002 UTC (12 years, 5 months ago) by
rdm
Original Path:
trunk/base/inc/TSystemDirectory.h
File length: 2288 byte(s)
Diff to
previous 568
a few changes in TBrowser to allow browsing parent directories via
a the '..' uplink. By Christian Holm.
In More detail:
* TSystemDirectory::Browse(TBrowser*):
Puts the '..' and '.' links in the output. If the
'TBrowser::kNoHidden' bit is set in the passed 'TBrowser' objects bit
mask, files beginning with '.' (including the link '.' to current
dir) is not shown. The uplink '..' is always shown. This bit can be
set from the menus.
* TList *TSystemDirectory::GetListOfFile():
Added method to get a list of the contents of the directory. The
'TList' contains 'TSystemDirectory' and 'TSystemFile' objects. I could
forsee situations where the following kind of code could be very
useful:
TChain* chain = new TChain("Tree", "A Tree");
TSystemDirectory* dataDir =
new TSystemDirectory("data", Form("%s/data", gSystem->HomeDirectory()));
TList* contents = dataDir->GetListOfFiles();
TIter next(contents);
TSystemFile* file;
while ((file = (TSystemFile*)next())) {
if (file->IsDirectory())
continue;
if (TString(file->GetName()).EndsWidth(".root"))
chain->Add(Form("%s/%s", file->GetTitle(), file->GetName()));
}
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/base/inc/TSystemDirectory.h
File length: 2230 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.
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.