/usr/include/openturns/swig/SpecFunc.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 SpecFunc.i
// Author : $LastChangedBy: souchaud $
// Date : $LastChangedDate: 2011-04-08 16:22:33 +0200 (Fri, 08 Apr 2011) $
// Id : $Id: SpecFunc.i 1863 2011-04-08 14:22:33Z souchaud $
%{
#include "SpecFunc.hxx"
%}
%include SpecFunc.hxx
namespace OpenTURNS { namespace Base { namespace Func { %extend SpecFunc { SpecFunc(const SpecFunc & other) { return new OpenTURNS::Base::Func::SpecFunc(other); } } }}}
|