Home | History | Annotate | Download | only in Common
      1 // TempFiles.h
      2 
      3 #ifndef __TEMPFILES_H
      4 #define __TEMPFILES_H
      5 
      6 #include "Common/MyString.h"
      7 
      8 class CTempFiles
      9 {
     10   void Clear();
     11 public:
     12   UStringVector Paths;
     13   ~CTempFiles() { Clear(); }
     14 };
     15 
     16 #endif
     17