14 lines
147 B
C++
14 lines
147 B
C++
#include <iostream>
|
|
|
|
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
class Parser
|
|
{
|
|
private:
|
|
|
|
public:
|
|
Parser(std::string input_file);
|
|
};
|
|
|
|
#endif |