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

« back to all changes in this revision

Viewing changes to python/src/BootstrapExperiment.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
// SWIG file BootstrapExperiment.i
 
2
// Author : $LastChangedBy: dutka $
 
3
// Date : $LastChangedDate: 2009-11-09 17:38:15 +0100 (lun. 09 nov. 2009) $
 
4
// Id : $Id: BootstrapExperiment.i 1403 2009-11-09 16:38:15Z dutka $
 
5
 
 
6
%{
 
7
#include "BootstrapExperiment.hxx"
 
8
%}
 
9
 
 
10
%include BootstrapExperiment.hxx
 
11
namespace OpenTURNS { namespace Uncertainty { namespace Algorithm { %extend BootstrapExperiment { BootstrapExperiment(const BootstrapExperiment & other) { return new OpenTURNS::Uncertainty::Algorithm::BootstrapExperiment(other); } } }}}