Moving code out of vfs/ that doesn't need to be there.

Progress on #294.
This commit is contained in:
Ben Vanik
2015-06-27 17:01:25 -07:00
parent abf47b7973
commit 23f91b58f3
8 changed files with 113 additions and 142 deletions

View File

@@ -27,6 +27,11 @@ class HostPathDevice : public Device {
std::unique_ptr<Entry> ResolvePath(const char* path) override;
uint32_t total_allocation_units() const override { return 128 * 1024; }
uint32_t available_allocation_units() const override { return 128 * 1024; }
uint32_t sectors_per_allocation_unit() const override { return 1; }
uint32_t bytes_per_sector() const override { return 2 * 1024; }
private:
std::wstring local_path_;
bool read_only_;