Add first parser draft for temp prfiles.
This commit is contained in:
21
tprcc/include/tpr/tpr-frontend.hpp
Normal file
21
tprcc/include/tpr/tpr-frontend.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef _TPR_FRONTEND_HPP_
|
||||
#define _TPR_FRONTEND_HPP_
|
||||
|
||||
#include <string>
|
||||
#include <lang/temp-lang-frontend.hpp>
|
||||
#include <tpr/tpr-scanner.hpp>
|
||||
|
||||
namespace tpr {
|
||||
|
||||
class TprFrontend : public TempLangFrontend {
|
||||
private:
|
||||
public:
|
||||
TprFrontend(const std::string &source_file);
|
||||
|
||||
int analyze();
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* _TPR_FRONTEND_HPP_ */
|
Reference in New Issue
Block a user