From 98fd4a1af9a8a87e272914e2b6945c93dd75bcbd Mon Sep 17 00:00:00 2001 From: ksherlock Date: Sat, 26 Jun 2010 03:39:14 +0000 Subject: [PATCH] git-svn-id: https://profuse.googlecode.com/svn/branches/v2@319 aa027e90-d47c-11dd-86d7-074df07e0730 --- Bitmap.cpp => ProDOS/Bitmap.cpp | 6 +++--- Bitmap.h => ProDOS/Bitmap.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) rename Bitmap.cpp => ProDOS/Bitmap.cpp (97%) rename Bitmap.h => ProDOS/Bitmap.h (90%) diff --git a/Bitmap.cpp b/ProDOS/Bitmap.cpp similarity index 97% rename from Bitmap.cpp rename to ProDOS/Bitmap.cpp index 1e3d246..57ed601 100644 --- a/Bitmap.cpp +++ b/ProDOS/Bitmap.cpp @@ -1,11 +1,11 @@ #include -#include "Bitmap.h" -#include "BlockDevice.h" +#include +#include #include "auto.h" -using namespace ProFUSE; +using namespace ProDOS; // returns # of 1-bits set (0-8) inline static unsigned popCount(uint8_t x) diff --git a/Bitmap.h b/ProDOS/Bitmap.h similarity index 90% rename from Bitmap.h rename to ProDOS/Bitmap.h index 243db9d..77388a6 100644 --- a/Bitmap.h +++ b/ProDOS/Bitmap.h @@ -5,7 +5,7 @@ -namespace ProFUSE { +namespace ProDOS { class BlockDevice; @@ -15,7 +15,7 @@ public: Bitmap(unsigned blocks); Bitmap(BlockDevice *device, unsigned keyPointer, unsigned blocks); - //todo -- constructor by loading fro, block device... + //todo -- constructor by loading from, block device... ~Bitmap(); int allocBlock();