cutelyst  4.9.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
postunbuffered.h
1 /*
2  * SPDX-FileCopyrightText: (C) 2016-2019 Daniel Nicoletti <dantti12@gmail.com>
3  * SPDX-License-Identifier: BSD-3-Clause
4  */
5 #ifndef POSTUNBUFFERED_H
6 #define POSTUNBUFFERED_H
7 
8 #include <QIODevice>
9 
10 class PostUnbuffered : public QIODevice
11 {
12  Q_OBJECT
13 public:
14  explicit PostUnbuffered(QObject *parent = nullptr);
15 
16  qint64 m_contentLength = 0;
17 };
18 
19 #endif // POSTUNBUFFERED_H
Q_OBJECTQ_OBJECT
QObject * parent() const const