Initial setup
This commit is contained in:
parent
3a0fa57a06
commit
68e795f0e6
17 changed files with 466 additions and 8 deletions
18
stream/stream.h
Normal file
18
stream/stream.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <fcgio.h>
|
||||
|
||||
class Stream {
|
||||
protected:
|
||||
Stream(FCGX_Stream* raw);
|
||||
Stream(const Stream& other) = delete;
|
||||
Stream(Stream&& other) = delete;
|
||||
Stream& operator = (const Stream& other) = delete;
|
||||
Stream& operator = (Stream&& other) = delete;
|
||||
virtual ~Stream();
|
||||
|
||||
public:
|
||||
|
||||
protected:
|
||||
fcgi_streambuf raw;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue