12 lines
298 B
C++
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
|