aocpp/lib/include/intcode/intcode.hpp

12 lines
298 B
C++
Raw Normal View History

2022-11-04 09:38:01 -07:00
#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