polly-b-gone/resource.h
2012-12-14 09:47:48 -08:00

19 lines
252 B
C++

// -*- C++ -*-
#ifndef MBOSTOCK_RESOURCE_H
#define MBOSTOCK_RESOURCE_H
namespace mbostock {
class Resources {
public:
static const char* path();
static const char* readFile(const char* path);
private:
Resources();
};
}
#endif