Working on switching to std::string.

This commit is contained in:
Ben Vanik
2014-08-16 02:30:23 -07:00
parent 01f0b14250
commit a4dfc23abc
34 changed files with 211 additions and 250 deletions

View File

@@ -26,7 +26,7 @@ class Device {
Device(const std::string& path);
virtual ~Device();
const char* path() const;
const std::string& path() const { return path_; }
virtual Entry* ResolvePath(const char* path) = 0;