cutelyst 4.3.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
plugin.cpp
1/*
2 * SPDX-FileCopyrightText: (C) 2013-2022 Daniel Nicoletti <dantti12@gmail.com>
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5#include "plugin.h"
6
7#include "application.h"
8#include "context.h"
9
10using namespace Cutelyst;
11
13 : QObject(parent)
14{
15}
16
18{
19 Q_UNUSED(app)
20 return true;
21}
22
23#include "moc_plugin.cpp"
The Cutelyst application.
Definition application.h:66
virtual bool setup(Application *app)
Definition plugin.cpp:17
Plugin(Application *parent)
Definition plugin.cpp:12
The Cutelyst namespace holds all public Cutelyst API.