#include <vector>#include <map>#include <string>#include <stdexcept>#include <cstdarg>#include <ctime>#include <mrpt/utils/mrpt_stdint.h>#include <mrpt/utils/mrpt_inttypes.h>#include <mrpt/math/math_frwds.h>#include <iostream>#include <fstream>#include <sstream>#include <Eigen/Dense>#include <Eigen/StdVector>#include <Eigen/StdDeque>#include <EIGEN_MATRIXBASE_PLUGIN_POST_IMPL>

Go to the source code of this file.
Classes | |
| struct | mrpt::dynamicsize_vector |
| The base class of MRPT vectors, actually, Eigen column matrices of dynamic size with specialized constructors that resemble std::vector. More... | |
| struct | mrpt::aligned_containers |
| Helper types for STL containers with Eigen memory allocators. More... | |
Namespaces | |
| namespace | mrpt |
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries. | |
| namespace | mrpt::utils |
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL. | |
Defines | |
| #define | EIGEN_USE_NEW_STDVECTOR |
| #define | MRPT_EIGEN_DERIVED_CLASS_CTOR_OPERATOR_EQUAL(_CLASS_) |
| #define | INVALID_NODEID static_cast<TNodeID>(-1) |
Typedefs | |
| typedef dynamicsize_vector< float > | mrpt::vector_float |
| typedef dynamicsize_vector < double > | mrpt::vector_double |
| typedef std::vector< int8_t > | mrpt::vector_signed_byte |
| typedef std::vector< int16_t > | mrpt::vector_signed_word |
| typedef std::vector< int32_t > | mrpt::vector_int |
| typedef std::vector< int64_t > | mrpt::vector_long |
| typedef std::vector< size_t > | mrpt::vector_size_t |
| typedef std::vector< uint8_t > | mrpt::vector_byte |
| typedef std::vector< uint16_t > | mrpt::vector_word |
| typedef std::vector< uint32_t > | mrpt::vector_uint |
| typedef std::vector< bool > | mrpt::vector_bool |
| A type for passing a vector of bools. | |
| typedef std::vector< std::string > | mrpt::vector_string |
| A type for passing a vector of strings. | |
| typedef unsigned long | mrpt::utils::POINTER_TYPE |
| For performing type casting from a pointer to its numeric value. | |
| typedef uint64_t | mrpt::utils::TNodeID |
| The type for node IDs in graphs of different types. | |
| typedef std::pair< TNodeID, TNodeID > | mrpt::utils::TPairNodeIDs |
| A pair of node IDs. | |
| #define EIGEN_USE_NEW_STDVECTOR |
Definition at line 56 of file base/include/mrpt/utils/types.h.
| #define INVALID_NODEID static_cast<TNodeID>(-1) |
Definition at line 155 of file base/include/mrpt/utils/types.h.
Referenced by mrpt::graphs::CDirectedTree::clear(), and mrpt::graphs::CDijkstra::CDijkstra().
| #define MRPT_EIGEN_DERIVED_CLASS_CTOR_OPERATOR_EQUAL | ( | _CLASS_ | ) |
/*! Assignment operator from any other Eigen class */ \ template<typename OtherDerived> \ inline mrpt_autotype & operator= (const Eigen::MatrixBase <OtherDerived>& other) { \ /*Base::operator=(other.template cast<typename Base::Scalar>());*/ \ Base::operator=(other); \ return *this; \ } \ /*! Constructor from any other Eigen class */ \ template<typename OtherDerived> \ inline _CLASS_(const Eigen::MatrixBase <OtherDerived>& other) : Base(other.template cast<typename Base::Scalar>()) { } \
Definition at line 74 of file base/include/mrpt/utils/types.h.
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |