~ubuntu-branches/ubuntu/maverick/openturns/maverick

« back to all changes in this revision

Viewing changes to python/src/WrapperData.i

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-05-10 17:27:55 UTC
  • mfrom: (1.1.4 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100510172755-cb5ynskknqqi5rhp
Tags: 0.13.2-2ubuntu1
* Merge with Debian testing. No changes left.
* ubuntu_fix-python-2.6.patch: fix detection of python 2.6 libs, to not use
  LOCALMODLIBS. This pulls a dependency on SSL and makes the package FTBFS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// SWIG file WrapperData.i
2
2
// Author : $LastChangedBy: dutka $
3
 
// Date : $LastChangedDate: 2008-06-26 13:50:17 +0200 (Thu, 26 Jun 2008) $
4
 
// Id : $Id: WrapperData.i 862 2008-06-26 11:50:17Z dutka $
 
3
// Date : $LastChangedDate: 2009-11-09 17:38:15 +0100 (lun. 09 nov. 2009) $
 
4
// Id : $Id: WrapperData.i 1403 2009-11-09 16:38:15Z dutka $
5
5
 
6
6
%{
7
7
#include "WrapperData.hxx"
9
9
 
10
10
%include WrapperData.hxx
11
11
 
12
 
%template(WrapperDataFileList)     OpenTURNS::Base::Type::Collection<OpenTURNS::Base::Func::WrapperDataFile>;
13
 
%template(WrapperDataVariableList) OpenTURNS::Base::Type::Collection<OpenTURNS::Base::Func::WrapperDataVariable>;
 
12
%template(WrapperDataFileCollection)     OpenTURNS::Base::Type::Collection<OpenTURNS::Base::Func::WrapperDataFile>;
 
13
%template(WrapperDataVariableCollection) OpenTURNS::Base::Type::Collection<OpenTURNS::Base::Func::WrapperDataVariable>;
14
14
 
15
15
namespace OpenTURNS{ namespace Base { namespace Func { %extend WrapperData { WrapperData(const WrapperData & other) { return new OpenTURNS::Base::Func::WrapperData(other); } } }}}