/usr/include/openturns/swig/ResourceMap.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 16 17 | // SWIG file ResourceMap.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2010-12-16 16:59:25 +0100 (Thu, 16 Dec 2010) $
// Id : $Id: ResourceMap.i 1678 2010-12-16 15:59:25Z dutka $
%{
#include "ResourceMap.hxx"
%}
%template(StringStringMap) std::map<OpenTURNS::String,OpenTURNS::String>;
%include ResourceMap.hxx
namespace OpenTURNS { namespace Base { namespace Common {
%extend ResourceMap {
const String __str__() const { return self->__repr__(); }
}
}}}
|