mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 05:57:57 -05:00
26 lines
373 B
C++
26 lines
373 B
C++
/*
|
|
* FixInput.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_FIXINPUT_H_
|
|
#define PROCESSOR_FIXINPUT_H_
|
|
|
|
#include <iostream>
|
|
|
|
#include "Math/bigint.h"
|
|
|
|
class FixInput
|
|
{
|
|
public:
|
|
const static int N_DEST = 1;
|
|
const static int N_PARAM = 1;
|
|
const static char* NAME;
|
|
|
|
bigint items[N_DEST];
|
|
|
|
void read(std::istream& in, const int* params);
|
|
};
|
|
|
|
#endif /* PROCESSOR_FIXINPUT_H_ */
|