licensed, a bit better file handling, a bit better migration handling

This commit is contained in:
Blue 2023-12-10 20:23:15 -03:00
parent 319895db64
commit 03d7614673
Signed by: blue
GPG key ID: 9B203B252A63EE38
28 changed files with 934 additions and 22 deletions

View file

@ -1,9 +1,11 @@
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "ostream.h"
OStream::OStream(FCGX_Stream* _raw):
Stream(_raw),
std(&raw)
{
}
{}
OStream::~OStream() {}

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <ios>

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "stream.h"
Stream::Stream(FCGX_Stream* raw):

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <fcgio.h>