next up previous contents
Next: Column methods Up: Constructors Previous: Constructors

SSTable

NAME SSTable

PROTOTYPE

#include "SSTable.h"

SSTable::SSTable();
SSTable::SSTable(const char * label);

EXAMPLE

#include "SSTable.h"

SSTable Table;
SSTable * pTable = new SSTable();

SSTable Table2("table2);
SSTable * pTable2 = new SSTable("ptable2");
PURPOSE

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.

RECEIVES

SSTable()
No Arguments  

SSTable(const char *)
label The name of the table

RETURN VALUE

None

REMARKS

None



Olivera Tosic
12/17/1999