aocpp/lib/include/aocpp/Startup.hpp
2022-11-07 21:00:14 -08:00

14 lines
199 B
C++

#ifndef AOCPP_STARTUP_HPP_
#define AOCPP_STARTUP_HPP_
#include <fstream>
#include <iostream>
#include <optional>
namespace aocpp {
auto Startup(int argc, char ** argv) -> std::istream&;
}
#endif