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