summaryrefslogtreecommitdiff
path: root/gentoobrowse-api/service/fileUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gentoobrowse-api/service/fileUtils.h')
-rw-r--r--gentoobrowse-api/service/fileUtils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gentoobrowse-api/service/fileUtils.h b/gentoobrowse-api/service/fileUtils.h
index c9a2ec4..b447c4d 100644
--- a/gentoobrowse-api/service/fileUtils.h
+++ b/gentoobrowse-api/service/fileUtils.h
@@ -12,7 +12,7 @@ namespace Gentoo {
class FileHandle {
public:
- FileHandle(const std::string & path);
+ FileHandle(const boost::filesystem::path & path);
~FileHandle();
protected:
@@ -21,7 +21,7 @@ namespace Gentoo {
class FileHandleStat : public FileHandle {
public:
- FileHandleStat(const std::string & path);
+ FileHandleStat(const boost::filesystem::path & path);
protected:
struct stat st;
@@ -29,7 +29,7 @@ namespace Gentoo {
class MemMap : public FileHandleStat {
public:
- MemMap(const std::string & path);
+ MemMap(const boost::filesystem::path & path);
~MemMap();
protected: