GRUTinizer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TPreserveGDirectory.h
Go to the documentation of this file.
1 #ifndef _TPRESERVEGDIRECTORY_H_
2 #define _TPRESERVEGDIRECTORY_H_
3 
4 #include "TDirectory.h"
5 
7 public:
8  TPreserveGDirectory() : bak(gDirectory) { }
9  ~TPreserveGDirectory() { bak->cd(); }
10 
11 private:
12  TDirectory* bak;
13 };
14 
15 #endif /* _TPRESERVEGDIRECTORY_H_ */