![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "ISTable.h"
const char * ISTable::GetName();
#include <string.h> // for strcpy
#include "ISTable.h"
const int MAX_STRING_LEN = 255;
ISTable * pTable = new ISTable("MyTable");
char buffer[MAX_STRING_LEN + 1];
...
strcpy(buffer, pTable->GetName());
GetName returns the name of the table.
No Arguments |
A constant string representing the name of the table.
See also: | Rename |
---|