| 123456789101112131415161718192021222324 |
- //
- // terminal_helper.hpp
- // simple_dice
- //
- // Created by Sam Jaffe on 12/18/18.
- // Copyright © 2018 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include <string>
- 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);
- }
|