예제 #1
0
파일: ivl_io.hpp 프로젝트: iavr/drvq
void write(const array_2d <T>& a, std::ostream& s)
{
	write(a[0], s, a.length());
}
예제 #2
0
파일: ivl_io.hpp 프로젝트: iavr/drvq
void read(array_2d <T>& a, std::istream& s)
{
	read(a[0], s, a.length());
}