This commit is contained in:
2022-11-07 21:00:14 -08:00
parent 5de6db8780
commit 719b822d5b
15 changed files with 175 additions and 26 deletions

View File

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