PackBinary/resource.h

15 lines
203 B
C
Raw Normal View History

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