Initial commit.

This commit is contained in:
Mike Bostock 2012-12-14 09:47:48 -08:00
commit 44b5f2392f
98 changed files with 11750 additions and 0 deletions

19
resource.h Normal file
View file

@ -0,0 +1,19 @@
// -*- 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