#include "SSTable.h"
SSTable::SSTable();
SSTable::SSTable(const char * label);
#include "SSTable.h"
SSTable Table;
SSTable * pTable = new SSTable();
SSTable Table2("table2);
SSTable * pTable2 = new SSTable("ptable2");
SSTable() is the default constructor for the SSTable class.
SSTable(const char *) is a constructor for the SSTable class that also sets the table's name.
| No Arguments |
| label | The name of the table |
None
None