Update User Agent String
[framework/web/wrt-commons.git] / modules / 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 DPL_COLORS_H
25 #define DPL_COLORS_H
26
27 namespace DPL
28 {
29
30 namespace Colors
31 {
32
33 namespace Text
34 {
35
36 extern const char* BOLD_GREEN_BEGIN;
37 extern const char* BOLD_GREEN_END;
38 extern const char* PURPLE_BEGIN;
39 extern const char* PURPLE_END;
40 extern const char* RED_BEGIN;
41 extern const char* RED_END;
42 extern const char* GREEN_BEGIN;
43 extern const char* GREEN_END;
44 extern const char* CYAN_BEGIN;
45 extern const char* CYAN_END;
46 extern const char* BOLD_RED_BEGIN;
47 extern const char* BOLD_RED_END;
48 extern const char* BOLD_YELLOW_BEGIN;
49 extern const char* BOLD_YELLOW_END;
50 extern const char* BOLD_GOLD_BEGIN;
51 extern const char* BOLD_GOLD_END;
52 extern const char* BOLD_WHITE_BEGIN;
53 extern const char* BOLD_WHITE_END;
54
55 } //namespace Text
56
57 namespace Html
58 {
59
60 extern const char* BOLD_GREEN_BEGIN;
61 extern const char* BOLD_GREEN_END;
62 extern const char* PURPLE_BEGIN;
63 extern const char* PURPLE_END;
64 extern const char* RED_BEGIN;
65 extern const char* RED_END;
66 extern const char* GREEN_BEGIN;
67 extern const char* GREEN_END;
68 extern const char* CYAN_BEGIN;
69 extern const char* CYAN_END;
70 extern const char* BOLD_RED_BEGIN;
71 extern const char* BOLD_RED_END;
72 extern const char* BOLD_YELLOW_BEGIN;
73 extern const char* BOLD_YELLOW_END;
74 extern const char* BOLD_GOLD_BEGIN;
75 extern const char* BOLD_GOLD_END;
76 extern const char* BOLD_WHITE_BEGIN;
77 extern const char* BOLD_WHITE_END;
78
79 } //namespace Html
80
81 } //namespace Colors
82
83 } //namespace DPL
84
85 #endif /* DPL_COLORS_H */