timew: Instantiates Grammar

This commit is contained in:
Paul Beckingham 2015-12-20 16:20:15 -05:00
parent a5922b7797
commit 801f39d2fa
3 changed files with 31 additions and 0 deletions

View file

@ -27,10 +27,15 @@
#ifndef INCLUDED_GRAMMAR
#define INCLUDED_GRAMMAR
#include <FS.h>
#include <string>
class Grammar
{
public:
Grammar ();
void loadFromFile (File&);
void loadFromString (const std::string&);
};
#endif