20 lines
335 B
C++
20 lines
335 B
C++
#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() override;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* _TPR_FRONTEND_HPP_ */ |