cutelyst  3.9.1
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-2022 Daniel Nicoletti <dantti12@gmail.com>
3  * SPDX-License-Identifier: BSD-3-Clause
4  */
5 #ifndef MULTIPARTFORMDATAINTERNAL_H
6 #define MULTIPARTFORMDATAINTERNAL_H
7 
8 #include <Cutelyst/cutelyst_global.h>
9 #include <Cutelyst/upload.h>
10 
11 namespace Cutelyst {
12 
13 class CUTELYST_LIBRARY MultiPartFormDataParser
14 {
15 public:
22  static Uploads parse(QIODevice *body, QStringView contentType, int bufferSize = 4096);
23 };
24 
25 } // namespace Cutelyst
26 
27 #endif // MULTIPARTFORMDATAINTERNAL_H
The Cutelyst namespace holds all public Cutelyst API.
Definition: Mainpage.dox:7