Warning, file /include/root/TDavixSystem.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TDavixSystem
0013 #define ROOT_TDavixSystem
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032 #include "TSystem.h"
0033
0034 class TDavixFileInternal;
0035
0036 class TDavixSystem : public TSystem {
0037 private:
0038 TDavixFileInternal* d_ptr;
0039
0040 public:
0041 TDavixSystem();
0042 TDavixSystem(const char *url);
0043
0044 virtual ~TDavixSystem();
0045
0046 void FreeDirectory(void *dirp) override;
0047 const char *GetDirEntry(void *dirp) override;
0048 Bool_t ConsistentWith(const char *path, void *dirptr) override;
0049
0050 Int_t GetPathInfo(const char* path, FileStat_t &buf) override;
0051 Bool_t IsPathLocal(const char *path) override;
0052 virtual Int_t Locate(const char* path, TString &endurl);
0053 Int_t MakeDirectory(const char* dir) override;
0054 void *OpenDirectory(const char* dir) override;
0055 int Unlink(const char *path) override;
0056
0057 ClassDefOverride(TDavixSystem, 0);
0058 };
0059
0060 #endif