pqTemporalExportReaction.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3 // SPDX-License-Identifier: BSD-3-Clause
4 #ifndef pqTemporalExportReaction_h
5 #define pqTemporalExportReaction_h
6 
8 #include "pqReaction.h"
9 
19 {
20  Q_OBJECT
21  typedef pqReaction Superclass;
22 
23 public:
24  pqTemporalExportReaction(QAction* parent);
25  ~pqTemporalExportReaction() override;
26 
27 protected Q_SLOTS:
31  void onTriggered() override;
32 
33 private:
34  Q_DISABLE_COPY(pqTemporalExportReaction)
35 };
36 
37 #endif
#define PQAPPLICATIONCOMPONENTS_EXPORT
Reaction to export a script that will produce configured temporal data products simultaneously.
This is a superclass just to make it easier to collect all such reactions.
Definition: pqReaction.h:25
virtual void onTriggered()
Called when the action is triggered.
Definition: pqReaction.h:46