diff options
-rw-r--r-- | simpl/common.i | 1 | ||||
-rw-r--r-- | src/simpl/base.cpp | 2 | ||||
-rw-r--r-- | 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 <vector> +#include <string> #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<Peak> Peaks; |