convert.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013, Open Source Robotics Foundation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
32 #ifndef TF2_CONVERT_H
33 #define TF2_CONVERT_H
34 
35 
37 #include <tf2/exceptions.h>
38 #include <geometry_msgs/TransformStamped.h>
39 #include <tf2/impl/convert.h>
40 
41 namespace tf2 {
42 
52 template <class T>
53  void doTransform(const T& data_in, T& data_out, const geometry_msgs::TransformStamped& transform);
54 
60 template <class T>
61  const ros::Time& getTimestamp(const T& t);
62 
68 template <class T>
69  const std::string& getFrameId(const T& t);
70 
71 
72 
73 /* An implementation for Stamped<P> datatypes */
74 template <class P>
76  {
77  return t.stamp_;
78  }
79 
80 /* An implementation for Stamped<P> datatypes */
81 template <class P>
82  const std::string& getFrameId(const tf2::Stamped<P>& t)
83  {
84  return t.frame_id_;
85  }
86 
93 template<typename A, typename B>
94  B toMsg(const A& a);
95 
102 template<typename A, typename B>
103  void fromMsg(const A&, B& b);
104 
112 template <class A, class B>
113  void convert(const A& a, B& b)
114  {
115  //printf("In double type convert\n");
117  }
118 
119 template <class A>
120  void convert(const A& a1, A& a2)
121  {
122  //printf("In single type convert\n");
123  if(&a1 != &a2)
124  a2 = a1;
125  }
126 
127 
128 }
129 
130 #endif //TF2_CONVERT_H
const std::string & getFrameId(const T &t)
Get the frame_id from data.
void doTransform(const T &data_in, T &data_out, const geometry_msgs::TransformStamped &transform)
The templated function expected to be able to do a transform.
ros::Time stamp_
The timestamp associated with this data.
void fromMsg(const A &, B &b)
B toMsg(const A &a)
std::string frame_id_
The frame_id associated this data.
const ros::Time & getTimestamp(const T &t)
Get the timestamp from data.
The data type which will be cross compatable with geometry_msgs This is the tf2 datatype equivilant o...
void convert(const A &a, B &b)
Definition: convert.h:113


tf2
Author(s): Tully Foote, Eitan Marder-Eppstein, Wim Meeussen
autogenerated on Fri Jun 7 2019 21:45:39