forked from pEp.foundation/libpEpAdapter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
#include "slurp.hh"
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
|
|
namespace pEp
|
|
{
|
|
|
|
std::string slurp(const std::string& filename)
|
|
{
|
|
std::ifstream input(filename.c_str(), std::ios_base::binary);
|
|
if(!input)
|
|
{
|
|
throw std::runtime_error("Cannot read file \"" + filename + "\"! ");
|
|
}
|
|
|
|
std::stringstream sstr;
|
|
sstr << input.rdbuf();
|
|
return sstr.str();
|
|
}
|
|
|
|
} // end of namespace pEp
|