1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00
pdf2htmlEX/src/TmpFiles.h
2013-06-13 18:00:25 +08:00

28 lines
383 B
C++

#ifndef TMPFILES_H__
#define TMPFILES_H__
#include <string>
#include <set>
#include "Param.h"
namespace pdf2htmlEX {
class TmpFiles
{
public:
explicit TmpFiles( const Param& param );
~TmpFiles();
void add( const std::string& fn);
private:
void clean();
const Param& param;
std::set<std::string> tmp_files;
};
} // namespace pdf2htmlEX
#endif //TMPFILES_H__