]> git.localhorst.tv Git - blank.git/blobdiff - src/io/Token.hpp
fix comment handling in TokenStreamReader
[blank.git] / src / io / Token.hpp
index 9813eb0adeb2f3a31f64e5086bc154b58f2822b4..e7776411874bf4c0f960d6613a6541068d63a5cc 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef BLANK_IO_TOKEN_HPP_
 #define BLANK_IO_TOKEN_HPP_
 
+#include <iosfwd>
 #include <string>
 
 
@@ -29,6 +30,9 @@ struct Token {
        std::string value;
 };
 
+std::ostream &operator <<(std::ostream &, Token::Type);
+std::ostream &operator <<(std::ostream &, const Token &);
+
 }
 
 #endif