1
0
Fork 0
forked from blue/pica

Initial setup

This commit is contained in:
Blue 2023-11-21 19:19:08 -03:00
parent 3a0fa57a06
commit 68e795f0e6
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
17 changed files with 466 additions and 8 deletions

18
stream/stream.h Normal file
View 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;
};