Hayden Hargreaves 7f6a3c6312 (INIT): Project init
On-boarding will begin now...
2025-10-13 16:35:46 -07:00

22 lines
387 B
C++

#ifndef PARSER_H
#define PARSER_H
#include <iostream>
#include <string>
class Parser {
private:
std::string input_file_path;
std::string output_file_path;
public:
Parser(std::string input_file_path, std::string output_file_path = "");
inline void Print() {
std::cout << this->input_file_path << " -> " << this->output_file_path
<< std::endl;
}
};
#endif