aocpp/lib/include/intcode/Parser.hpp

16 lines
226 B
C++
Raw Normal View History

2022-11-04 09:38:01 -07:00
#ifndef INTCODE_PARSER_HPP_
#define INTCODE_PARSER_HPP_
#include <istream>
#include <vector>
#include "Machine.hpp"
namespace intcode {
auto ParseStream(std::istream &in) -> std::vector<ValueType>;
} // namespace
#endif