tools.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2015 Aldebaran
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 
18 
19 #ifndef ALROS_TOOLS_HPP
20 #define ALROS_TOOLS_HPP
21 
22 #define RESETCOLOR "\033[0m"
23 #define GREEN "\033[32m"
24 #define HIGHGREEN "\033[92m"
25 #define BOLDRED "\033[1m\033[31m"
26 #define YELLOW "\033[33m"
27 #define BOLDYELLOW "\033[1m\033[33m"
28 #define BOLDCYAN "\033[1m\033[36m"
29 
30 # include <qi/anyobject.hpp>
31 
32 namespace naoqi
33 {
34 
35 namespace robot
36 {
37 enum Robot
38 {
40  NAO,
43 };
44 }
45 
46 enum Topics {
47  Laser = 0,
50 };
51 
52 namespace dataType {
54 {
55  None = 0,
57  Int,
60 };
61 }
62 
63 } // naoqi
64 
65 #if LIBQI_VERSION>24
66 QI_TYPE_ENUM(naoqi::Topics);
67 QI_TYPE_ENUM(naoqi::dataType::DataType);
68 #else
71 #endif
72 
73 #endif
QI_TYPE_ENUM_REGISTER(naoqi::Topics)
Topics
Definition: tools.hpp:46


naoqi_driver
Author(s): Karsten Knese
autogenerated on Sat Feb 15 2020 03:24:26