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