static std::string serialiseVector(std::vector<CheckOverlapResult::shared_ptr_type> const & V)
			{
				std::ostringstream ostr;
				serialiseVector(ostr,V);
				return ostr.str();
			}
Beispiel #2
0
			static std::string serialiseVector(std::vector<FileFragment> const & V)
			{
			        std::ostringstream ostr;
			        serialiseVector(ostr,V);
			        return ostr.str();
			}