The world's most popular open source database
#include <NdbDictionary.hpp>
Collaboration diagram for NdbDictionary::Dictionary::List:

Public Member Functions | |
| List () | |
| ~List () | |
Public Attributes | |
| unsigned | count |
| Number of elements in list. | |
| Element * | elements |
| Pointer to array of elements. | |
Classes | |
| struct | Element |
| Object to be stored in an NdbDictionary::Dictionary::List. More... | |
Definition at line 1558 of file NdbDictionary.hpp.
| NdbDictionary::Dictionary::List::List | ( | ) | [inline] |
| NdbDictionary::Dictionary::List::~List | ( | ) | [inline] |
Definition at line 1584 of file NdbDictionary.hpp.
References count, database, elements, NdbDictionary::Dictionary::List::Element::name, and NdbDictionary::Dictionary::List::Element::schema.
01584 { 01585 if (elements != 0) { 01586 for (unsigned i = 0; i < count; i++) { 01587 delete[] elements[i].database; 01588 delete[] elements[i].schema; 01589 delete[] elements[i].name; 01590 elements[i].name = 0; 01591 } 01592 delete[] elements; 01593 count = 0; 01594 elements = 0; 01595 } 01596 }
Number of elements in list.
Definition at line 1581 of file NdbDictionary.hpp.
Referenced by ~List().
Pointer to array of elements.
Definition at line 1582 of file NdbDictionary.hpp.
Referenced by ~List().
1.4.7

