/usr/lib/cmake/paraview/pqServerManagerModelImplementation.cxx.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 | #include "@ARG_TYPE@ServerManagerModelImplementation.h"
#include "vtkSMProxy.h"
// begin includes
@ARG_INCLUDES@
// end includes
//-----------------------------------------------------------------------------
@ARG_TYPE@ServerManagerModelImplementation::@ARG_TYPE@ServerManagerModelImplementation(QObject* parentObject)
: QObject(parentObject)
{
}
//-----------------------------------------------------------------------------
@ARG_TYPE@ServerManagerModelImplementation::~@ARG_TYPE@ServerManagerModelImplementation()
{
}
//-----------------------------------------------------------------------------
pqProxy* @ARG_TYPE@ServerManagerModelImplementation::createPQProxy(
const QString& regGroup, const QString& regName, vtkSMProxy* proxy, pqServer* server) const
{
if (proxy!=NULL &&
proxy->GetXMLGroup() != NULL &&
proxy->GetXMLName() != NULL)
{
@ARG_BODY@
}
return NULL;
}
|