#ifndef UBIXFS_H
#define UBIXFS_H
#include "superblock.h"
#include "fsAbstract.h"
class UbixFS : public vfs_abstract {
protected:
signed char * freeBlockList;
diskSuperBlock * superBlock;
int32 getFreeBlock(uInt32);
int32 getFreeBlock(void);
public:
UbixFS(void);
virtual int format(dev_t *);
virtual ~UbixFS(void);
}; // UbixFS
#endif // !UBIXFS_H