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 
7 #include "pqApplicationComponentsModule.h"
8 #include "pqReaction.h"
9 
10 #include "vtkParaViewDeprecation.h" // for deprec macro
11 
20 class PARAVIEW_DEPRECATED_IN_6_2_0("Noop for a while. Use Extractors instead.")
21  PQAPPLICATIONCOMPONENTS_EXPORT pqTemporalExportReaction : public pqReaction
22 {
23  Q_OBJECT
24  typedef pqReaction Superclass;
25 
26 public:
27  pqTemporalExportReaction(QAction* parent);
28  ~pqTemporalExportReaction() override;
29 
30 protected Q_SLOTS:
34  void onTriggered() override;
35 
36 private:
37  Q_DISABLE_COPY(pqTemporalExportReaction)
38 };
39 
40 #endif
#define PARAVIEW_DEPRECATED_IN_6_2_0(reason)
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