Cutelyst  2.13.0
actionchain.h
1 /*
2  * Copyright (C) 2015-2017 Daniel Nicoletti <dantti12@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 #ifndef ACTIONCHAIN_H
19 #define ACTIONCHAIN_H
20 
21 #include <QtCore/qobject.h>
22 
23 #include <Cutelyst/action.h>
24 #include <Cutelyst/cutelyst_global.h>
25 
26 namespace Cutelyst {
27 
28 class ActionChainPrivate;
36 class CUTELYST_LIBRARY ActionChain : public Action
37 {
38  Q_OBJECT
39  Q_DECLARE_PRIVATE(ActionChain)
40 public:
44  explicit ActionChain(const ActionList &chain, QObject *parent = nullptr);
45  virtual ~ActionChain() override = default;
46 
51  ActionList chain() const;
52 
56  virtual qint8 numberOfCaptures() const override;
57 
58 protected:
59  virtual bool doExecute(Context *c) override;
60 };
61 
62 }
63 
64 #endif // ACTIONCHAIN_H
Cutelyst::Context
The Cutelyst Context.
Definition: context.h:50
Cutelyst::ActionChain
Holds a chain of Cutelyst Actions.
Definition: actionchain.h:36
Cutelyst
The Cutelyst namespace holds all public Cutelyst API.
Definition: Mainpage.dox:7
Cutelyst::Action
This class represents a Cutelyst Action.
Definition: action.h:47
Cutelyst::ActionList
QVector< Action * > ActionList
Definition: action.h:166