/usr/include/openturns/swig/WrapperData.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 12 13 14 15 | // SWIG file WrapperData.i
// Author : $LastChangedBy: schueller $
// Date : $LastChangedDate: 2011-06-01 17:59:24 +0200 (Wed, 01 Jun 2011) $
// Id : $Id: WrapperData.i 1920 2011-06-01 15:59:24Z schueller $
%{
#include "WrapperData.hxx"
%}
%include WrapperData.hxx
%template(WrapperDataFileCollection) OpenTURNS::Base::Type::Collection<OpenTURNS::WrapperDataFile>;
%template(WrapperDataVariableCollection) OpenTURNS::Base::Type::Collection<OpenTURNS::WrapperDataVariable>;
namespace OpenTURNS{ %extend WrapperData { WrapperData(const WrapperData & other) { return new OpenTURNS::WrapperData(other); } } }
|