Some checks failed
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm64:latest, aarch64-linux-gnu, arm64) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm:latest, arm-linux-gnueabihf, arm7) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for PowerPC (push) Successful in 2m58s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Failing after 3m36s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-riscv64:latest, riscv64-linux-gnu, riscv64) (push) Successful in 2m19s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x64:latest, x86_64-linux-gnu, amd64) (push) Successful in 2m21s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x86:latest, i386-linux-gnu, 386) (push) Successful in 2m6s
71 lines
2.5 KiB
C++
71 lines
2.5 KiB
C++
/*
|
|
TessesFramework a library to make C++ easier for me, used in CrossLang:
|
|
https://git.tesses.org/tesses50/crosslang
|
|
|
|
Copyright (C) 2026 Mike Nolan
|
|
SPDX-License-Identifier: GPL-3.0-or-later WITH TessesFramework-Exception-1.0
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "Args.hpp"
|
|
#include "BitTorrent/TorrentFile.hpp"
|
|
#include "Console.hpp"
|
|
#include "Crypto/ClientTLSStream.hpp"
|
|
#include "Crypto/Crypto.hpp"
|
|
#include "Date/Date.hpp"
|
|
#include "Filesystem/FSHelpers.hpp"
|
|
#include "Filesystem/LocalFS.hpp"
|
|
#include "Filesystem/MountableFilesystem.hpp"
|
|
#include "Filesystem/NullFilesystem.hpp"
|
|
#include "Filesystem/RelativeFilesystem.hpp"
|
|
#include "Filesystem/SubdirFilesystem.hpp"
|
|
#include "HiddenField.hpp"
|
|
#include "Http/BasicAuthServer.hpp"
|
|
#include "Http/CGIServer.hpp"
|
|
#include "Http/CallbackServer.hpp"
|
|
#include "Http/ChangeableServer.hpp"
|
|
#include "Http/ContentDisposition.hpp"
|
|
#include "Http/DomainServer.hpp"
|
|
#include "Http/FileServer.hpp"
|
|
#include "Http/HttpReverseProxy.hpp"
|
|
#include "Http/MountableServer.hpp"
|
|
#include "Http/RouteServer.hpp"
|
|
#include "Lazy.hpp"
|
|
#include "Mail/Smtp.hpp"
|
|
#include "Platform/Environment.hpp"
|
|
#include "Platform/Process.hpp"
|
|
#include "Random.hpp"
|
|
#include "Serialization/Bencode.hpp"
|
|
#include "Serialization/BitConverter.hpp"
|
|
#include "Serialization/Json.hpp"
|
|
#include "Serialization/SQLite.hpp"
|
|
#include "Streams/BufferedStream.hpp"
|
|
#include "Streams/ByteReader.hpp"
|
|
#include "Streams/ByteWriter.hpp"
|
|
#include "Streams/FileStream.hpp"
|
|
#include "Streams/MemoryStream.hpp"
|
|
#include "Streams/NetworkStream.hpp"
|
|
#include "Text/HeaderGenerator.hpp"
|
|
#include "Text/StringConverter.hpp"
|
|
#include "TextStreams/StdIOReader.hpp"
|
|
#include "TextStreams/StdIOWriter.hpp"
|
|
#include "TextStreams/StreamReader.hpp"
|
|
#include "TextStreams/StreamWriter.hpp"
|
|
#include "TextStreams/StringReader.hpp"
|
|
#include "TextStreams/StringWriter.hpp"
|
|
#include "Threading/Mutex.hpp"
|
|
#include "Threading/Thread.hpp"
|
|
#include "Threading/ThreadPool.hpp" |