~percona-dev/percona-xtradb-cluster/galera-2.x

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
33
34
35
36
37
38
39
40
// Copyright (C) 2009 Codership Oy <info@codership.com>

/*!
 * @file GaleraUtils main header file
 *
 * $Id: galerautils.hpp 2319 2011-08-20 16:51:39Z teemu $
 */

#ifndef _galerautils_hpp_
#define _galerautils_hpp_

#include "gu_exception.hpp"
#include "gu_throw.hpp"
#include "gu_logger.hpp"
#include "gu_assert.hpp"
#include "gu_mutex.hpp"
#include "gu_cond.hpp"
#include "gu_lock.hpp"
#include "gu_monitor.hpp"
#include "gu_macros.hpp"
#include "gu_utils.hpp"
#include "gu_convert.hpp"
#include "gu_string.hpp"
#include "gu_config.hpp"
#include "gu_prodcons.hpp"

extern "C" {
#include "gu_macros.h"
#include "gu_limits.h"
#include "gu_byteswap.h"
#include "gu_time.h"
#include "gu_conf.h"
#include "gu_mem.h"
#include "gu_dbug.h"
#include "gu_fifo.h"
#include "gu_uuid.h"
#include "gu_utils.h" // gu_abort()
}

#endif /* _galerautils_hpp_ */