12 lines
198 B
C++
12 lines
198 B
C++
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "stream.h"
|
|
|
|
Stream::Stream(FCGX_Stream* raw):
|
|
raw(raw)
|
|
{}
|
|
|
|
Stream::~Stream() {
|
|
}
|