14 lines
222 B
C++
14 lines
222 B
C++
#ifndef AOCPP_STARTUP_HPP_
|
|
#define AOCPP_STARTUP_HPP_
|
|
|
|
/// @file Startup.hpp
|
|
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
auto Main(std::istream & in, std::ostream & out) -> void;
|
|
|
|
#endif
|