#include #include "resource.h" using namespace std; int main() { cout << "Resource test" << endl; Resource::initResourceData(); const char *str = Resource::get("plop.txt"); if(str != NULL) cout << str << endl; else cout << "nope" << endl; }