/usr/include/openturns/swig/CompositeRandomVector.i is in libopenturns-dev 0.15-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 | // SWIG file CompositeRandomVector.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2008-05-21 11:21:38 +0200 (Wed, 21 May 2008) $
// Id : $Id: CompositeRandomVector.i 815 2008-05-21 09:21:38Z dutka $
%{
#include "CompositeRandomVector.hxx"
%}
%include CompositeRandomVector.hxx
namespace OpenTURNS { namespace Uncertainty { namespace Model { %extend CompositeRandomVector { CompositeRandomVector(const CompositeRandomVector & other) { return new OpenTURNS::Uncertainty::Model::CompositeRandomVector(other); } } }}}
|