Libraries reorganized to limit the number of exported symbols
[platform/core/security/key-manager.git] / src / manager / dpl / core / include / dpl / colors.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        colors.h
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version     1.0
20  * @brief       Some constants with definition of colors for Console
21  *              and html output
22  */
23
24 #ifndef CKM_COLORS_H
25 #define CKM_COLORS_H
26
27 namespace CKM {
28 namespace Colors {
29 namespace Text {
30 extern const char* BOLD_GREEN_BEGIN;
31 extern const char* BOLD_GREEN_END;
32 extern const char* PURPLE_BEGIN;
33 extern const char* PURPLE_END;
34 extern const char* RED_BEGIN;
35 extern const char* RED_END;
36 extern const char* GREEN_BEGIN;
37 extern const char* GREEN_END;
38 extern const char* CYAN_BEGIN;
39 extern const char* CYAN_END;
40 extern const char* BOLD_RED_BEGIN;
41 extern const char* BOLD_RED_END;
42 extern const char* BOLD_YELLOW_BEGIN;
43 extern const char* BOLD_YELLOW_END;
44 extern const char* BOLD_GOLD_BEGIN;
45 extern const char* BOLD_GOLD_END;
46 extern const char* BOLD_WHITE_BEGIN;
47 extern const char* BOLD_WHITE_END;
48 extern const char* COLOR_END;
49 } //namespace Text
50 } //namespace Colors
51 } //namespace CKM
52
53 #endif /* CKM_COLORS_H */