mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
15 lines
191 B
C++
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];
|
|
}
|