Don't bother supporting a filename

This commit is contained in:
Eric Mertens
2023-01-31 09:44:30 -08:00
parent 2f7949b8da
commit df195e65b5
12 changed files with 7 additions and 44 deletions

View File

@@ -8,15 +8,6 @@
#include <memory>
#include <optional>
namespace aocpp {
/// @brief Return the selected input stream or run the test suite
/// @param argc Number of arguments
/// @param argv Command line arguments
auto Startup(int argc, char ** argv) -> std::unique_ptr<std::istream, void(*)(std::istream*)>;
}
auto Main(std::istream & in, std::ostream & out) -> void;
#endif