mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-08 05:03:59 -05:00
23 lines
416 B
C++
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_ */
|