Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TempFiles.h « Common « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 173713a08e64a260c8863b7e73f25bd717d9a151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TempFiles.h

#ifndef __TEMPFILES_H
#define __TEMPFILES_H

#include "Common/String.h"

class CTempFiles
{
  void Clear();
public:
  UStringVector Paths;
  ~CTempFiles() { Clear(); }
};

#endif