Program Listing for File point_3d_fixed_landmark.hpp

Return to documentation for file (/tmp/ws/src/fuse/fuse_variables/include/fuse_variables/point_3d_fixed_landmark.hpp)

/*
 * Software License Agreement (BSD License)
 *
 *  Copyright (c) 2021, Locus Robotics
 *  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 copyright holder 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 FUSE_VARIABLES__POINT_3D_FIXED_LANDMARK_HPP_
#define FUSE_VARIABLES__POINT_3D_FIXED_LANDMARK_HPP_

#include <ostream>

#include <fuse_core/fuse_macros.hpp>
#include <fuse_core/serialization.hpp>
#include <fuse_variables/fixed_size_variable.hpp>

#include <boost/serialization/access.hpp>
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/export.hpp>


namespace fuse_variables
{
class Point3DFixedLandmark : public FixedSizeVariable<3>
{
public:
  FUSE_VARIABLE_DEFINITIONS(Point3DFixedLandmark)


  enum : size_t
  {
    X = 0,
    Y = 1,
    Z = 2
  };

  Point3DFixedLandmark() = default;

  explicit Point3DFixedLandmark(const uint64_t & landmark_id);

  double & x() {return data_[X];}

  const double & x() const {return data_[X];}

  double & y() {return data_[Y];}

  const double & y() const {return data_[Y];}

  double & z() {return data_[Z];}

  const double & z() const {return data_[Z];}

  const uint64_t & id() const {return id_;}

  void print(std::ostream & stream = std::cout) const override;

  bool holdConstant() const override;

private:
  // Allow Boost Serialization access to private methods
  friend class boost::serialization::access;
  uint64_t id_ {0};

  template<class Archive>
  void serialize(Archive & archive, const unsigned int /* version */)
  {
    archive & boost::serialization::base_object<FixedSizeVariable<SIZE>>(*this);
    archive & id_;
  }
};

}  // namespace fuse_variables

BOOST_CLASS_EXPORT_KEY(fuse_variables::Point3DFixedLandmark);

#endif  // FUSE_VARIABLES__POINT_3D_FIXED_LANDMARK_HPP_