/usr/include/openturns/swig/AggregatedProcess.i is in libopenturns-dev 1.7-3.
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 33 34 35 36 37 38 39 40 41 | // SWIG file AggregatedProcess.i
%{
#include "PythonWrappingFunctions.hxx"
#include "AggregatedProcess.hxx"
%}
%include AggregatedProcess_doc.i
%template(ProcessCollection) OT::Collection<OT::Process>;
%include AggregatedProcess.hxx
%extend OT::Collection<OT::Process>
{
OT::Collection<OT::Process> (PyObject * pyObj)
{
return OT::buildCollectionFromPySequence<OT::Process>( pyObj );
}
}
namespace OT {
%extend AggregatedProcess {
AggregatedProcess(PyObject * pyObj)
{
OT::Pointer<OT::Collection<OT::Process> > p_coll = OT::buildCollectionFromPySequence<OT::Process>( pyObj );
return new OT::AggregatedProcess( *p_coll );
}
AggregatedProcess(const AggregatedProcess & other)
{
return new OT::AggregatedProcess(other);
}
} // AggregatedProcess
} // OT
|