From 20b7008994b392c6e7f0fcb0e6a48230699deea6 Mon Sep 17 00:00:00 2001 From: David Given Date: Fri, 26 Aug 2022 00:05:58 +0200 Subject: [PATCH] Move sectorinterface into vfs. --- lib/{ => vfs}/sectorinterface.h | 0 lib/vfs/vfs.cc | 2 +- src/fe-getfileinfo.cc | 2 +- src/fe-ls.cc | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename lib/{ => vfs}/sectorinterface.h (100%) diff --git a/lib/sectorinterface.h b/lib/vfs/sectorinterface.h similarity index 100% rename from lib/sectorinterface.h rename to lib/vfs/sectorinterface.h diff --git a/lib/vfs/vfs.cc b/lib/vfs/vfs.cc index f618fcb2..2ff29411 100644 --- a/lib/vfs/vfs.cc +++ b/lib/vfs/vfs.cc @@ -5,7 +5,7 @@ #include "lib/imginputoutpututils.h" #include "lib/image.h" #include "lib/sector.h" -#include "lib/sectorinterface.h" +#include "lib/vfs/sectorinterface.h" #include "lib/config.pb.h" Path::Path(const std::string& path) diff --git a/src/fe-getfileinfo.cc b/src/fe-getfileinfo.cc index f22c906e..a1dfe79f 100644 --- a/src/fe-getfileinfo.cc +++ b/src/fe-getfileinfo.cc @@ -8,7 +8,7 @@ #include "imagewriter/imagewriter.h" #include "fmt/format.h" #include "fluxengine.h" -#include "lib/sectorinterface.h" +#include "lib/vfs/sectorinterface.h" #include "lib/vfs/vfs.h" #include #include diff --git a/src/fe-ls.cc b/src/fe-ls.cc index b47d183b..d60ada36 100644 --- a/src/fe-ls.cc +++ b/src/fe-ls.cc @@ -8,7 +8,7 @@ #include "imagereader/imagereader.h" #include "fmt/format.h" #include "fluxengine.h" -#include "lib/sectorinterface.h" +#include "lib/vfs/sectorinterface.h" #include "lib/vfs/vfs.h" #include #include