it compiles (but doesn't do anything useful)

This commit is contained in:
Bernhard Amann 2011-10-17 14:19:17 -07:00
parent 42e82b99cb
commit 6e6073ff4c
12 changed files with 223 additions and 0 deletions

20
src/InputReaderAscii.h Normal file
View file

@ -0,0 +1,20 @@
#ifndef INPUTREADERASCII_H
#define INPUTREADERASCII_H
#include "InputReader.h"
class InputReaderAscii : public InputReader {
public:
InputReaderAscii();
~InputReaderAscii();
static InputReader* Instantiate() { return new InputReaderAscii; }
protected:
private:
};
#endif /* INPUTREADERASCII_H */