pqTimerLogReaction.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 pqTimerLogReaction_h
5 #define pqTimerLogReaction_h
6 
7 #include "pqReaction.h"
8 
14 {
15  Q_OBJECT
16  typedef pqReaction Superclass;
17 
18 public:
19  pqTimerLogReaction(QAction* parentObject)
20  : Superclass(parentObject)
21  {
22  }
23 
27  static void showTimerLog();
28 
29 protected:
34 
35 private:
36  Q_DISABLE_COPY(pqTimerLogReaction)
37 };
38 
39 #endif
#define PQAPPLICATIONCOMPONENTS_EXPORT
This is a superclass just to make it easier to collect all such reactions.
Definition: pqReaction.h:25
void onTriggered() override
Called when the action is triggered.
Reaction for showing the timer log dialog.
static void showTimerLog()
Pops up (or raises) the timer log dialog.
pqTimerLogReaction(QAction *parentObject)