add FileReader skeleton

This commit is contained in:
Josh Holtrop 2014-06-04 21:04:15 -04:00
parent a49536d8d8
commit 4ebedcf301
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#ifndef JES_FILEREADER_H
#define JES_FILEREADER_H
namespace jes
{
class FileReader
{
public:
bool load(const char * fname);
protected:
};
}
#endif

View File

@ -0,0 +1 @@
#include "jes/FileReader.h"