mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
16 lines
295 B
C++
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
|