
Public Member Functions | |
| Apply () | |
| Apply (int val) | |
| virtual int | apply (const Iter &) |
Public Attributes | |
| int | m_key |
Definition at line 151 of file ndb_condig.cpp.
| Apply::Apply | ( | ) | [inline] |
| Apply::Apply | ( | int | val | ) | [inline] |
| int Apply::apply | ( | const Iter & | ) | [virtual] |
Reimplemented in NodeTypeApply, and ConnectionTypeApply.
Definition at line 439 of file ndb_condig.cpp.
References ndb_mgm_configuration_iterator::get(), and m_key.
00440 { 00441 Uint32 val32; 00442 Uint64 val64; 00443 const char* valc; 00444 if (iter.get(m_key, &val32) == 0) 00445 { 00446 printf("%u", val32); 00447 } 00448 else if(iter.get(m_key, &val64) == 0) 00449 { 00450 printf("%llu", val64); 00451 } 00452 else if(iter.get(m_key, &valc) == 0) 00453 { 00454 printf("%s", valc); 00455 } 00456 return 0; 00457 }
Here is the call graph for this function:

| int Apply::m_key |
1.4.7

