aocpp/lib/include/intcode/intcode.hpp
Eric Mertens e98a71dad6 rearrange
2022-11-04 09:38:01 -07:00

12 lines
298 B
C++

#ifndef INTCODE_HPP_
#define INTCODE_INTCODE_HPP_
#include <intcode/Machine.hpp>
#include <intcode/Parser.hpp>
#include <intcode/Interpreter.hpp>
template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
template <class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
#endif