blob: c7feffd3a4ee97089ee7bb632a03d891c0646ce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef MGMAPI_CONFIGURATION_HPP
#define MGMAPI_CONFIGURATION_HPP
#include <ConfigValues.hpp>
struct ndb_mgm_configuration {
ConfigValues m_config;
};
struct ndb_mgm_configuration_iterator {
Uint32 m_sectionNo;
Uint32 m_typeOfSection;
ConfigValues::ConstIterator m_config;
ndb_mgm_configuration_iterator(const ndb_mgm_configuration &, unsigned type);
~ndb_mgm_configuration_iterator();
int first();
int next();
int valid() const;
int find(int param, unsigned value);
int get(int param, unsigned * value) const ;
int get(int param, unsigned long long * value) const ;
int get(int param, const char ** value) const ;
//
void reset();
int enter();
};
#endif
|