mirror of
https://github.com/holub/mame
synced 2025-06-26 06:14:12 +03:00
17 lines
222 B
C++
17 lines
222 B
C++
// TempFiles.h
|
|
|
|
#ifndef ZIP7_INC_TEMP_FILES_H
|
|
#define ZIP7_INC_TEMP_FILES_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
class CTempFiles
|
|
{
|
|
void Clear();
|
|
public:
|
|
FStringVector Paths;
|
|
~CTempFiles() { Clear(); }
|
|
};
|
|
|
|
#endif
|