Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 197 Bytes

TempFiles.h

File metadata and controls

16 lines (12 loc) · 197 Bytes
 
Jan 23, 2008
Jan 23, 2008
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/MyString.h"
class CTempFiles
{
void Clear();
public:
UStringVector Paths;
~CTempFiles() { Clear(); }
};
#endif