#ifndef INTCODE_PARSER_HPP_ #define INTCODE_PARSER_HPP_ #include #include #include "Machine.hpp" namespace intcode { auto ParseStream(std::istream &in) -> std::vector; } // namespace #endif