urbackup_backend/piped_process/IPipedProcess.h
2011-01-06 17:43:38 +01:00

16 lines
295 B
C++

#ifndef IPIPEDPROCESS_H
#define IPIPEDPROCESS_H
#include "../Interface/Object.h"
class IPipe;
class IPipedProcess : public IObject
{
public:
virtual IPipe *getOutputPipe()=0;
virtual bool isOpen()=0;
virtual bool Write(const std::string &str)=0;
};
#endif //IPIPEDPROCESS_H