14 lines
199 B
C++
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
|