X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fio%2FToken.hpp;h=e7776411874bf4c0f960d6613a6541068d63a5cc;hb=73d4dd2d78eda1e2f8889d1913a97a60cec86876;hp=9813eb0adeb2f3a31f64e5086bc154b58f2822b4;hpb=ede25c0a2f59e21521d1cd962e6ea9d78169ca12;p=blank.git diff --git a/src/io/Token.hpp b/src/io/Token.hpp index 9813eb0..e777641 100644 --- a/src/io/Token.hpp +++ b/src/io/Token.hpp @@ -1,6 +1,7 @@ #ifndef BLANK_IO_TOKEN_HPP_ #define BLANK_IO_TOKEN_HPP_ +#include #include @@ -29,6 +30,9 @@ struct Token { std::string value; }; +std::ostream &operator <<(std::ostream &, Token::Type); +std::ostream &operator <<(std::ostream &, const Token &); + } #endif