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