SwatDB
|
#include <page.h>
Public Member Functions | |
Page () | |
Constructor. | |
~Page () | |
Destructor. | |
char * | getData () |
Get function for the data char array. More... | |
Protected Attributes | |
char | data [PAGE_SIZE] |
char array that stores the page data. Derived classes could map appropriate structures on it. | |
Friends | |
class | DiskManager |
SwatDB Page Class. Page is the basic unit of read/write operation on disk in the system. The data member is PAGE_SIZE char array, onto which other derived classes could map layer-specific structures and define access methods.
char* Page::getData | ( | ) |
Get function for the data char array.