PackBinary/resource.h

15 lines
203 B
C++

#ifndef RESOURCE_HEADER
#define RESOURCE_HEADER
#include <string>
class CResource
{
public:
CResource();
public:
std::string getShellTemplate();
std::string getDesktopTemplate();
};
#endif