documentation

This commit is contained in:
Eric Mertens
2023-01-29 16:47:44 -08:00
parent 499fa902fd
commit 30709c7bd7
2 changed files with 115 additions and 27 deletions

View File

@@ -1,6 +1,8 @@
#ifndef AOCPP_STARTUP_HPP_
#define AOCPP_STARTUP_HPP_
/// @file Startup.hpp
#include <fstream>
#include <iostream>
#include <memory>
@@ -8,6 +10,9 @@
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*)>;
}