switch to using boost::filesystem
[mussa.git] / alg / flp.hpp
index ed9c02bce36a360ee7439c586b811910e88c3798..0f5f892234ae4fac78093db0885bf8cad115191a 100644 (file)
@@ -14,6 +14,8 @@
 //                            ---------- flp.hh  -----------
 //                        ----------------------------------------
 
+#include <boost/filesystem/path.hpp>
+
 #include <list>
 #include <string>
 #include <vector>
@@ -58,9 +60,9 @@ class FLPs
      */
     int size() const;
     //! Save all the FLPs to save_file_path
-    void save(std::string save_file_path);
+    void save(boost::filesystem::path save_file_path);
     //! Load a vector of a lists of FLPs
-    void load(std::string file_path);
+    void load(boost::filesystem::path file_path);
   private:
     //! the number of base pairs in the sliding window
     int window_size;