#ifndef ROOT_TSystemFile
#define ROOT_TSystemFile
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
class TBrowser;
class TSystemFile : public TNamed {
private:
TString fIconName;
public:
TSystemFile();
TSystemFile(const char *filename, const char *dirname);
virtual ~TSystemFile();
virtual void Browse(TBrowser *b);
virtual void Rename(const char *name);
virtual void Delete();
virtual void Copy(const char *to);
virtual void Move(const char *to);
virtual void Edit();
virtual Bool_t IsDirectory(const char *dir = 0) const;
virtual void SetIconName(const char *name) { fIconName = name; }
const char *GetIconName() const { return fIconName.Data(); }
virtual void Inspect() const;
virtual void Dump() const;
void DrawClass() const { }
TObject *DrawClone(Option_t *) const { return 0; }
void SetDrawOption(Option_t *) { }
void SetName(const char *name) { TNamed::SetName(name); }
void SetTitle(const char *title) { TNamed::SetTitle(title); }
void Delete(Option_t *) { }
void Copy(TObject & ) const { }
ClassDef(TSystemFile,0)
};
#endif
Last change: Wed Jun 25 08:53:53 2008
Last generated: 2008-06-25 08:53
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.