.. _program_listing_file_include_tf2_transform_datatypes.h: Program Listing for File transform_datatypes.h ============================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/tf2/transform_datatypes.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // Copyright 2008, Willow Garage, Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // * Neither the name of the Willow Garage nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. #ifndef TF2__TRANSFORM_DATATYPES_H_ #define TF2__TRANSFORM_DATATYPES_H_ #include #include #include #include "tf2/time.h" namespace tf2 { template class Stamped : public T { public: TimePoint stamp_; std::string frame_id_; Stamped() : frame_id_("NO_ID_STAMPED_DEFAULT_CONSTRUCTION") { } Stamped(const T & input, const TimePoint & timestamp, const std::string & frame_id) : T(input), stamp_(timestamp), frame_id_(frame_id) { } Stamped(const Stamped & s) : T(s), stamp_(s.stamp_), frame_id_(s.frame_id_) { } void setData(const T & input) {*static_cast(this) = input;} Stamped & operator=(const Stamped & s) { T::operator=(s); this->stamp_ = s.stamp_; this->frame_id_ = s.frame_id_; return *this; } }; template bool operator==(const Stamped & a, const Stamped & b) { return a.frame_id_ == b.frame_id_ && a.stamp_ == b.stamp_ && static_cast(a) == static_cast(b); } template class WithCovarianceStamped : public T { public: TimePoint stamp_; std::string frame_id_; std::array, 6> cov_mat_; WithCovarianceStamped() : frame_id_("NO_ID_STAMPED_DEFAULT_CONSTRUCTION"), cov_mat_{} { } WithCovarianceStamped( const T & input, const TimePoint & timestamp, const std::string & frame_id, const std::array, 6> & covariance_matrix ) : T(input), stamp_(timestamp), frame_id_(frame_id), cov_mat_(covariance_matrix) { } WithCovarianceStamped(const WithCovarianceStamped & w) : T(w), stamp_(w.stamp_), frame_id_(w.frame_id_), cov_mat_(w.cov_mat_) { } void setData(const T & input) {*static_cast(this) = input;} WithCovarianceStamped & operator=(const WithCovarianceStamped & w) { T::operator=(w); this->stamp_ = w.stamp_; this->frame_id_ = w.frame_id_; this->cov_mat_ = w.cov_mat_; return *this; } }; template bool operator==(const WithCovarianceStamped & a, const WithCovarianceStamped & b) { return a.frame_id_ == b.frame_id_ && a.stamp_ == b.stamp_ && a.cov_mat_ == b.cov_mat_ && static_cast(a) == static_cast(b); } } // namespace tf2 #endif // TF2__TRANSFORM_DATATYPES_H_