Files
MP-SPDZ/Processor/IntInput.cpp
2019-07-11 14:59:18 +10:00

15 lines
191 B
C++

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