mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
35 lines
681 B
C++
35 lines
681 B
C++
/*
|
|
* NoLivePrep.h
|
|
*
|
|
*/
|
|
|
|
#ifndef PROCESSOR_NOLIVEPREP_H_
|
|
#define PROCESSOR_NOLIVEPREP_H_
|
|
|
|
#include "Exceptions/Exceptions.h"
|
|
#include "Data_Files.h"
|
|
|
|
template<class T> class SubProcessor;
|
|
class DataPositions;
|
|
|
|
template<class T>
|
|
class NoLivePrep : public Sub_Data_Files<T>
|
|
{
|
|
public:
|
|
NoLivePrep(SubProcessor<T>* proc, DataPositions& usage) : Sub_Data_Files<T>(0, 0, "", usage, 0)
|
|
{
|
|
(void) proc;
|
|
throw not_implemented();
|
|
}
|
|
template<class U>
|
|
NoLivePrep(DataPositions& usage, U& _) : NoLivePrep(0, usage)
|
|
{
|
|
(void) _;
|
|
}
|
|
NoLivePrep(DataPositions& usage) : NoLivePrep(0, usage)
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif /* PROCESSOR_NOLIVEPREP_H_ */
|