transform_datatypes.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, Willow Garage, Inc.
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_TRANSFORM_DATATYPES_H
33 #define TF2_TRANSFORM_DATATYPES_H
34 
35 #include <string>
36 #include "ros/time.h"
37 
38 namespace tf2
39 {
40 
43 template <typename T>
44 class Stamped : public T{
45  public:
47  std::string frame_id_;
48 
50  Stamped() :frame_id_ ("NO_ID_STAMPED_DEFAULT_CONSTRUCTION"){}; //Default constructor used only for preallocation
51 
53  Stamped(const T& input, const ros::Time& timestamp, const std::string & frame_id) :
54  T (input), stamp_ ( timestamp ), frame_id_ (frame_id){ } ;
55 
57  Stamped(const Stamped<T>& s):
58  T (s),
59  stamp_(s.stamp_),
60  frame_id_(s.frame_id_) {}
61 
64  {
65  T::operator=(rhs);
66  stamp_ = rhs.stamp_;
67  frame_id_ = rhs.frame_id_;
68  return *this;
69  }
70 
71 
73  void setData(const T& input){*static_cast<T*>(this) = input;};
74 };
75 
77 template <typename T>
78 bool operator==(const Stamped<T> &a, const Stamped<T> &b) {
79  return a.frame_id_ == b.frame_id_ && a.stamp_ == b.stamp_ && static_cast<const T&>(a) == static_cast<const T&>(b);
80 }
81 
82 
83 }
84 #endif //TF2_TRANSFORM_DATATYPES_H
tf2::Stamped::Stamped
Stamped(const T &input, const ros::Time &timestamp, const std::string &frame_id)
Definition: transform_datatypes.h:53
tf2::Stamped::setData
void setData(const T &input)
Definition: transform_datatypes.h:73
time.h
tf2::Stamped
The data type which will be cross compatable with geometry_msgs This is the tf2 datatype equivilant o...
Definition: transform_datatypes.h:44
tf2::Stamped::Stamped
Stamped()
Definition: transform_datatypes.h:50
tf2::Stamped::Stamped
Stamped(const Stamped< T > &s)
Definition: transform_datatypes.h:57
tf2::operator==
TF2SIMD_FORCE_INLINE bool operator==(const Matrix3x3 &m1, const Matrix3x3 &m2)
Equality operator between two matrices It will test all elements are equal.
Definition: Matrix3x3.h:641
tf2::Stamped::frame_id_
std::string frame_id_
The frame_id associated this data.
Definition: transform_datatypes.h:47
tf2::Stamped::stamp_
ros::Time stamp_
The timestamp associated with this data.
Definition: transform_datatypes.h:46
tf2::Stamped::operator=
Stamped< T > & operator=(const Stamped< T > &rhs)
Definition: transform_datatypes.h:63
ros::Time
tf2
Definition: buffer_core.h:54


tf2
Author(s): Tully Foote, Eitan Marder-Eppstein, Wim Meeussen
autogenerated on Sun Feb 4 2024 03:18:11