bande
[ozulis.git] / src / lang / parser-factory.hh
blob1677673b382bd63c011f3c8a7e59f68cb2186a18
1 #ifndef LANG_PARSER_FACTORY_HH
2 # define LANG_PARSER_FACTORY_HH
4 # include <string>
6 namespace ast
8 class File;
11 namespace lang
13 class ParserFactory
15 public:
16 static ast::File * parseFile(const std::string & path);
20 #endif /* !LANG_PARSER_FACTORY_HH */