Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #include <sstream> | |
2 #include <string> | |
3 | |
4 #include "Utils.h" | |
5 | |
6 using namespace AdblockPlus; | |
7 | |
8 std::string Utils::Slurp(std::istream& stream) | |
9 { | |
10 std::stringstream content; | |
11 content << stream.rdbuf(); | |
12 return content.str(); | |
13 } | |
OLD | NEW |