pqConsoleWidgetEventPlayer.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 pqConsoleWidgetEventPlayer_h
5 #define pqConsoleWidgetEventPlayer_h
6 
7 #include "pqWidgetEventPlayer.h"
8 #include "pqWidgetsModule.h" // needed for EXPORT macro.
9 
14 class PQWIDGETS_EXPORT pqConsoleWidgetEventPlayer : public pqWidgetEventPlayer
15 {
16  Q_OBJECT
17  typedef pqWidgetEventPlayer Superclass;
18 
19 public:
20  pqConsoleWidgetEventPlayer(QObject* parent = nullptr);
21  ~pqConsoleWidgetEventPlayer() override;
22 
26  using Superclass::playEvent;
27  bool playEvent(
28  QObject* target, const QString& cmd, const QString& args, bool& errorFlag) override;
29 
30 private:
31  Q_DISABLE_COPY(pqConsoleWidgetEventPlayer)
32 };
33 
34 #endif
boost::graph_traits< vtkGraph *>::vertex_descriptor target(boost::graph_traits< vtkGraph *>::edge_descriptor e, vtkGraph *)
#define PQWIDGETS_EXPORT
pqConsoleWidgetEventPlayer is used to play back test commands recorded by pqConsoleWidgetEventTransla...