mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 08:07:09 -06:00
17 lines
195 B
C++
Executable File
17 lines
195 B
C++
Executable File
// TempFiles.h
|
|
|
|
#ifndef __TEMPFILES_H
|
|
#define __TEMPFILES_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
class CTempFiles
|
|
{
|
|
void Clear();
|
|
public:
|
|
UStringVector Paths;
|
|
~CTempFiles() { Clear(); }
|
|
};
|
|
|
|
#endif
|