tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

TempFiles.h (224B)


      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