/* * ReplicatedPrivateOutput.h * */ #ifndef PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_ #define PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_ template class SubProcessor; template class Share; template class ReplicatedPrivateOutput { SubProcessor& proc; public: ReplicatedPrivateOutput(SubProcessor& proc); void start(int player, int target, int source); void stop(int player, int source); }; #endif /* PROCESSOR_REPLICATEDPRIVATEOUTPUT_H_ */