pqCatalystRemoveBreakpointReaction.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 pqCatalystRemoveBreakpointReaction_h
5 #define pqCatalystRemoveBreakpointReaction_h
6 
7 #include "pqReaction.h"
8 #include <QPointer>
9 
12 
22 {
23  Q_OBJECT
24  typedef pqReaction Superclass;
25 
26 public:
27  pqCatalystRemoveBreakpointReaction(QAction* parent = nullptr);
28 
29 public Q_SLOTS: // NOLINT(readability-redundant-access-specifiers)
30  void updateEnableState() override;
31 
32 protected:
33  void onTriggered() override;
34 
35 private:
37 };
38 
39 #endif
Manages the live-coprocessing link.
Performs additional operation on the Live client.
virtual void updateEnableState()
Definition: pqReaction.h:48
#define PQAPPLICATIONCOMPONENTS_EXPORT
This is a superclass just to make it easier to collect all such reactions.
Definition: pqReaction.h:25
Reaction for setting a breakpoint to Catalyst CoProcessing Engine for Live-Data Visualization.
virtual void onTriggered()
Called when the action is triggered.
Definition: pqReaction.h:46