forked from aya/aya
8 lines
144 B
C++
8 lines
144 B
C++
#include <istream>
|
|
#include <string>
|
|
|
|
namespace Aya
|
|
{
|
|
void readStreamIntoString(std::istream& stream, std::string& content);
|
|
} // namespace Aya
|