#include <mrpt/typemeta/TTypeName_stl.h>
#include <mrpt/serialization/metaprogramming_serialization.h>
#include <mrpt/serialization/CArchive.h>
#include <vector>
#include <array>
#include <deque>
#include <set>
#include <map>
#include <list>
#include <algorithm>
Go to the source code of this file.
|
| template<class T , size_t N> |
| CArchive & | mrpt::serialization::operator<< (CArchive &out, const std::array< T, N > &obj) |
| | Template method to serialize a std::array<T,N> More...
|
| |
| template<class T , size_t N> |
| CArchive & | mrpt::serialization::operator>> (CArchive &in, std::array< T, N > &obj) |
| | Template method to deserialize a std::array<T,N> More...
|
| |
| template<class T1 , class T2 > |
| CArchive & | mrpt::serialization::operator<< (CArchive &out, const std::pair< T1, T2 > &obj) |
| | Template method to serialize a STL pair. More...
|
| |
| template<class T1 , class T2 > |
| CArchive & | mrpt::serialization::operator>> (CArchive &in, std::pair< T1, T2 > &obj) |
| | Template method to deserialize a STL pair. More...
|
| |