// // terminal_helper.hpp // simple_dice // // Created by Sam Jaffe on 12/18/18. // Copyright © 2018 Sam Jaffe. All rights reserved. // #pragma once #include namespace dice { class unexpected_token; } namespace terminal { /** * @param str {@see make_dice(std::string const &)} */ void process_dice_string(std::string const & str); void print_error_message(std::string const & str, dice::unexpected_token const & ut); }