pqCatalystContinueReaction.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 pqCatalystContinueReaction_h
5 #define pqCatalystContinueReaction_h
6 
8 #include <QPointer>
9 
11 
20 {
21  Q_OBJECT
23 
24 public:
25  pqCatalystContinueReaction(QAction* parentTemp = nullptr)
26  : Superclass(parentTemp)
27  {
28  }
29 
30 public Q_SLOTS: // NOLINT(readability-redundant-access-specifiers)
31  void updateEnableState() override
32  {
34  }
35 
36 protected:
40  void onTriggered() override { this->setPauseSimulation(false); }
41 
42 private:
43  Q_DISABLE_COPY(pqCatalystContinueReaction)
44 };
45 
46 #endif
Reaction for setting a breakpoint to Catalyst CoProcessing Engine for Live-Data Visualization.
Manages the live-coprocessing link.
#define PQAPPLICATIONCOMPONENTS_EXPORT
void onTriggered() override
Called when the action is triggered.
pqCatalystContinueReaction(QAction *parentTemp=nullptr)
Reaction for setting a breakpoint to Catalyst CoProcessing Engine for Live-Data Visualization.