namespace.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifdef ROS2 /**********************************************************************************************************/
4 #define USING_ENSENSO_CAMERA_MSG(MSG_NAME) \
5  namespace ensenso \
6  { \
7  namespace msg \
8  { \
9  using MSG_NAME = ensenso_camera_msgs::msg::MSG_NAME; \
10  using MSG_NAME##Ptr = ensenso_camera_msgs::msg::MSG_NAME::SharedPtr; \
11  using MSG_NAME##ConstPtr = ensenso_camera_msgs::msg::MSG_NAME::ConstSharedPtr; \
12  } \
13  }
14 
15 #define USING_MSG(PACKAGE_NAME, MSG_NAME) \
16  namespace PACKAGE_NAME \
17  { \
18  namespace msg \
19  { \
20  using MSG_NAME = PACKAGE_NAME::msg::MSG_NAME; \
21  using MSG_NAME##Ptr = PACKAGE_NAME::msg::MSG_NAME::SharedPtr; \
22  using MSG_NAME##ConstPtr = PACKAGE_NAME::msg::MSG_NAME::ConstSharedPtr; \
23  } \
24  }
25 
26 #define GET_D_MATRIX(info) info->d
27 #define GET_K_MATRIX(info) info->k
28 #define GET_P_MATRIX(info) info->p
29 #define GET_R_MATRIX(info) info->r
30 
31 #else /***ROS1*********************************************************************************************************/
32 #define USING_ENSENSO_CAMERA_MSG(MSG_NAME) \
33  namespace ensenso \
34  { \
35  namespace msg \
36  { \
37  using MSG_NAME = ensenso_camera_msgs::MSG_NAME; \
38  using MSG_NAME##Ptr = ensenso_camera_msgs::MSG_NAME##Ptr; \
39  using MSG_NAME##ConstPtr = ensenso_camera_msgs::MSG_NAME##ConstPtr; \
40  } \
41  }
42 
43 #define USING_MSG(PACKAGE_NAME, MSG_NAME) \
44  namespace PACKAGE_NAME \
45  { \
46  namespace msg \
47  { \
48  using MSG_NAME = PACKAGE_NAME::MSG_NAME; \
49  using MSG_NAME##Ptr = PACKAGE_NAME::MSG_NAME##Ptr; \
50  using MSG_NAME##ConstPtr = PACKAGE_NAME::MSG_NAME##ConstPtr; \
51  } \
52  }
53 
54 #define GET_D_MATRIX(info) info->D
55 #define GET_K_MATRIX(info) info->K
56 #define GET_P_MATRIX(info) info->P
57 #define GET_R_MATRIX(info) info->R
58 #endif


ensenso_camera
Author(s): Ensenso
autogenerated on Sat Jun 3 2023 02:17:04