Files
MP-SPDZ/Processor/NoFilePrep.h
Marcel Keller 6a424539c9 SoftSpokenOT.
2022-08-25 13:23:18 +10:00

23 lines
416 B
C++

/*
* NoFilePrep.h
*
*/
#ifndef PROCESSOR_NOFILEPREP_H_
#define PROCESSOR_NOFILEPREP_H_
#include "Data_Files.h"
template<class T>
class NoFilePrep : public Preprocessing<T>
{
public:
NoFilePrep(int, int, const string&, DataPositions& usage, int = -1) :
Preprocessing<T>(usage)
{
throw runtime_error("preprocessing from file disabled");
}
};
#endif /* PROCESSOR_NOFILEPREP_H_ */