/usr/lib/cmake/paraview/pqServerManagerModelImplementation.h.in is in paraview-dev 5.0.1+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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
|