#include <stddef.h>
#include "ubixfs.h"
#include "inode.h"
#include "superblock.h"
UbixFS::UbixFS(void) {
freeBlockList = NULL;
} // UbixFS::UbixFS
bool
UbixFS::init(void) {
return true;
} // UbixFS::init
bool
UbixFS::format(void * ptr, unsigned long long devBlocks, int blockSize) {
return true;
} // UbixFS::format
bool
UbixFS::mount(void) {
return true;
} // UbixFS::mount
bool
UbixFS::unmount(void) {
return true;
} // UbixFS::unmount
bool
UbixFS::verifyFS(void) {
return true;
} // UbixFS::verifyFS
UbixFS::~UbixFS(void) {
delete [] freeBlockList;
return;
}