/usr/include/openturns/swig/Basis.i is in python-openturns-dev 1.2-2.
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 42 43 44 | // SWIG file Basis.i
// @author schueller
// @date 2009-11-09 17:38:15 +0100 (Mon, 09 Nov 2009)
%{
#include "PythonWrappingFunctions.hxx"
#include "Basis.hxx"
%}
%template(NumericalMathFunctionCollection) OT::Collection<OT::NumericalMathFunction>;
%template(NumericalMathFunctionPersistentCollection) OT::PersistentCollection<OT::NumericalMathFunction>;
%include Basis.hxx
%extend OT::Collection<OT::NumericalMathFunction>
{
OT::Collection<OT::NumericalMathFunction> (PyObject * pyObj)
{
return OT::buildCollectionFromPySequence<OT::NumericalMathFunction>( pyObj );
}
}
namespace OT {
%extend Basis {
Basis(const Basis & other)
{
return new OT::Basis(other);
}
Basis(PyObject * pyObj)
{
OT::Pointer<OT::Collection<OT::NumericalMathFunction> > p_coll = OT::buildCollectionFromPySequence<OT::NumericalMathFunction>( pyObj );
return new OT::Basis( *p_coll );
}
} // Basis
} // OT
|