Remove Qt SVG and Qt OpenGL as hard dependencies
Qt SVG is not used in the frontend (no SVGs are rendered).
Neither is Qt OpenGL used. Qt OpenGL is discouraged anyway.
// TempFiles.h
#ifndef __TEMPFILES_H
#define __TEMPFILES_H
#include "Common/MyString.h"
class CTempFiles
{
void Clear();
public:
UStringVector Paths;
~CTempFiles() { Clear(); }
};
#endif