c7cfd536b25d7ea7e1911a030fb777b3ae47ae5a
[platform/core/test/security-tests.git] / tests / framework / 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 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 } //namespace Text
49
50 namespace Html {
51 extern const char* BOLD_GREEN_BEGIN;
52 extern const char* BOLD_GREEN_END;
53 extern const char* PURPLE_BEGIN;
54 extern const char* PURPLE_END;
55 extern const char* RED_BEGIN;
56 extern const char* RED_END;
57 extern const char* GREEN_BEGIN;
58 extern const char* GREEN_END;
59 extern const char* CYAN_BEGIN;
60 extern const char* CYAN_END;
61 extern const char* BOLD_RED_BEGIN;
62 extern const char* BOLD_RED_END;
63 extern const char* BOLD_YELLOW_BEGIN;
64 extern const char* BOLD_YELLOW_END;
65 extern const char* BOLD_GOLD_BEGIN;
66 extern const char* BOLD_GOLD_END;
67 extern const char* BOLD_WHITE_BEGIN;
68 extern const char* BOLD_WHITE_END;
69 } //namespace Html
70 } //namespace Colors
71 } //namespace DPL
72
73 #endif /* DPL_COLORS_H */