forked from mail-ru-im/im-desktop
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnamespaces.h
36 lines (26 loc) · 926 Bytes
/
namespaces.h
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
#pragma once
#ifndef CORE_NS
#define CORE_NS core
#define CORE_NS_BEGIN namespace CORE_NS {
#define CORE_NS_END }
#endif
#define THEMES_NS_BEGIN namespace Themes {
#define THEMES_NS_END }
#define UTILS_NS_BEGIN namespace Utils {
#define UTILS_NS_END }
#define UTILS_EXIF_NS_BEGIN UTILS_NS_BEGIN namespace Exif {
#define UTILS_EXIF_NS_END } UTILS_NS_END
#define UI_NS_BEGIN namespace Ui {
#define UI_NS_END }
#define UI_COMPLEX_MESSAGE_NS_BEGIN UI_NS_BEGIN namespace ComplexMessage {
#define UI_COMPLEX_MESSAGE_NS_END } UI_NS_END
#define DATA_NS_BEGIN namespace Data {
#define DATA_NS_END }
#define FONTS_NS_BEGIN namespace Fonts {
#define FONTS_NS_END }
#define PLATFORM_NS platform
#define PLATFORM_NS_BEGIN namespace PLATFORM_NS {
#define PLATFORM_NS_END }
#define MEMSTATS_NS Memory_Stats
#define MEMSTATS_NS_BEGIN namespace MEMSTATS_NS {
#define MEMSTATS_NS_END }