19 lines
252 B
C++
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
|