From 43c2d5723b392b385837a1cf90e75f88abc3d5d6 Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 19 Aug 2011 16:18:58 +0100 Subject: Use std::string instead of char* --- simpl/common.i | 1 + src/simpl/base.cpp | 2 +- src/simpl/base.h | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/simpl/common.i b/simpl/common.i index 12cef9d..c45bab8 100644 --- a/simpl/common.i +++ b/simpl/common.i @@ -1,4 +1,5 @@ %include exception.i +%include std_string.i %include "numpy.i" %exception diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index 4e34dfd..e126433 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -40,7 +40,7 @@ Peak::~Peak() } // Returns true iff this peak is unmatched in the given direction, and has positive amplitude -bool Peak::is_free(const char* direction) +bool Peak::is_free(string direction) { if(amplitude <= 0.0) { diff --git a/src/simpl/base.h b/src/simpl/base.h index 88ff0e9..59a969e 100644 --- a/src/simpl/base.h +++ b/src/simpl/base.h @@ -20,9 +20,12 @@ */ #include +#include #include "exceptions.h" +using namespace std; + namespace Simpl { @@ -48,7 +51,7 @@ public: { return previous_peak == NULL; }; - bool is_free(const char* direction="forwards"); + bool is_free(string direction = string("forwards")); }; typedef std::vector Peaks; -- cgit v1.2.3