mgmapi_configuration.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

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