mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
Fixed- and floating-point inputs.
This commit is contained in:
14
Processor/IntInput.cpp
Normal file
14
Processor/IntInput.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* IntInput.cpp
|
||||
*
|
||||
*/
|
||||
|
||||
#include "IntInput.h"
|
||||
|
||||
const char* IntInput::NAME = "integer";
|
||||
|
||||
void IntInput::read(std::istream& in, const int* params)
|
||||
{
|
||||
(void) params;
|
||||
in >> items[0];
|
||||
}
|
||||
Reference in New Issue
Block a user