pqVerifyRequiredPluginBehavior.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 pqVerifyRequiredPluginBehavior_h
5 #define pqVerifyRequiredPluginBehavior_h
6 
8 #include <QObject>
9 #include <QSet>
10 
20 {
21  Q_OBJECT
22  typedef QObject Superclass;
23 
24 public:
25  pqVerifyRequiredPluginBehavior(QObject* parent = nullptr);
26 
27 protected Q_SLOTS:
28  void requiredPluginsNotLoaded();
29 
30 private:
31  Q_DISABLE_COPY(pqVerifyRequiredPluginBehavior)
32  QSet<QString> PreviouslyParsedResources;
33 };
34 
35 #endif
ParaView plugins can be loaded on the client or server before a connection is made.
#define PQAPPLICATIONCOMPONENTS_EXPORT