ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file

Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
Henry Weller
2016-05-30 21:20:56 +01:00
parent 1cce60aa78
commit eba760a6d6
24640 changed files with 6366069 additions and 0 deletions

View File

@ -0,0 +1,32 @@
/// Generated file. Do not edit.
#ifndef @ARG_TYPE@ServerManagerModelImplementation_h
#define @ARG_TYPE@ServerManagerModelImplementation_h
#include "pqServerManagerModelInterface.h"
/// Used by add_pqproxy() macro.
class @ARG_TYPE@ServerManagerModelImplementation : public QObject,
public pqServerManagerModelInterface
{
Q_OBJECT;
Q_INTERFACES(pqServerManagerModelInterface);
public:
@ARG_TYPE@ServerManagerModelImplementation(QObject* parentObject=NULL);
virtual ~@ARG_TYPE@ServerManagerModelImplementation();
/// Creates a pqProxy subclass for the vtkSMProxy given the details for its
/// registration with the proxy manager.
/// \arg \c regGroup - registration group for the proxy.
/// \arg \c regName - registration name for the proxy.
/// \arg \c proxy - vtkSMProxy instance to create the pqProxy for.
/// \arg \c server - pqServer instance on which the proxy is present.
virtual pqProxy* createPQProxy(const QString& regGroup,
const QString& regName, vtkSMProxy* proxy, pqServer* server) const;
private:
Q_DISABLE_COPY(@ARG_TYPE@ServerManagerModelImplementation);
};
#endif // endif ifndef