Removing utilities (that were just adding needless layers).

Progress on #294.
This commit is contained in:
Ben Vanik
2015-06-27 16:27:24 -07:00
parent 246c47f923
commit abf47b7973
17 changed files with 125 additions and 217 deletions

View File

@@ -23,7 +23,7 @@ class Device {
Device(const std::string& path);
virtual ~Device();
const std::string& path() const { return path_; }
const std::string& mount_path() const { return mount_path_; }
virtual bool is_read_only() const { return true; }
@@ -37,7 +37,7 @@ class Device {
size_t length);
protected:
std::string path_;
std::string mount_path_;
};
} // namespace vfs