Files
MP-SPDZ/Processor/IntInput.hpp

16 lines
207 B
C++

/*
* IntInput.cpp
*
*/
#include "IntInput.h"
template<class T>
const char* IntInput<T>::NAME = "integer";
template<class T>
void IntInput<T>::read(std::istream& in, const int*)
{
in >> items[0];
}