summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XLogger.h
blob: 0aa1d0b1f9f9648504dcf4f0964f6c965bb42880 (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
#ifndef ICU4XLogger_H
#define ICU4XLogger_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"

#ifdef __cplusplus
namespace capi {
#endif

typedef struct ICU4XLogger ICU4XLogger;
#ifdef __cplusplus
} // namespace capi
#endif
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif

bool ICU4XLogger_init_simple_logger();

bool ICU4XLogger_init_console_logger();
void ICU4XLogger_destroy(ICU4XLogger* self);

#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif