C++程序  |  17行  |  213 B

// TempFiles.h

#ifndef __TEMPFILES_H
#define __TEMPFILES_H

#include "Common/MyString.h"

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

#endif