cutelyst 4.3.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
multipartformdataparser.h
1/*
2 * SPDX-FileCopyrightText: (C) 2014-2023 Daniel Nicoletti <dantti12@gmail.com>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5#pragma once
6
7#include <Cutelyst/cutelyst_global.h>
8#include <Cutelyst/upload.h>
9
10namespace Cutelyst {
11
12class CUTELYST_LIBRARY MultiPartFormDataParser
13{
14public:
21 [[nodiscard]] static Uploads
22 parse(QIODevice *body, QByteArrayView contentType, int bufferSize = 4096);
23};
24
25} // namespace Cutelyst
The Cutelyst namespace holds all public Cutelyst API.