mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / test / include / NdbConfig.hpp
blob2548092b786b1851fde135a24e4de81fd1806fba
1 /* Copyright (c) 2003-2005 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
16 #ifndef NDBT_CONFIG_HPP
17 #define NDBT_CONFIG_HPP
19 #include <ndb_types.h>
20 #include <mgmapi.h>
21 #include <Vector.hpp>
22 #include <NdbRestarter.hpp>
23 #include <mgmapi_config_parameters.h>
25 class NdbConfig : public NdbRestarter {
26 public:
27 NdbConfig(int own_id, const char* addr = 0)
28 : NdbRestarter(addr),
29 ownNodeId(own_id) {};
31 bool getProperty(unsigned nodeid, unsigned type, unsigned key, Uint32 * val);
33 bool getHostName(unsigned int node_id, const char ** hostname);
34 //protected:
35 int ownNodeId;
38 #endif