Files
MP-SPDZ/Tools/SwitchableOutput.h
2020-10-20 15:30:47 +11:00

55 lines
842 B
C++

/*
* OutputRedirection.h
*
*/
#ifndef TOOLS_SWITCHABLEOUTPUT_H_
#define TOOLS_SWITCHABLEOUTPUT_H_
#include <iostream>
#include <fstream>
using namespace std;
class SwitchableOutput
{
ostream* out;
public:
SwitchableOutput(bool on = true)
{
activate(on);
}
void activate(bool on)
{
if (on)
out = &cout;
else
out = 0;
}
void redirect_to_file(ofstream& out_file)
{
out = &out_file;
}
template<class T>
SwitchableOutput& operator<<(const T& value)
{
if (out)
*out << value;
return *this;
cout << flush;
}
SwitchableOutput& operator<<(ostream& (*__pf)(ostream&))
{
if (out)
*out << __pf;
return *this;
}
};
#endif /* TOOLS_SWITCHABLEOUTPUT_H_ */