|
|
template<class T , class C > |
| C const & | cereal::queue_detail::container (std::queue< T, C > const &queue) |
| | Allows access to the protected container in queue.
|
| |
|
template<class T , class C , class Comp > |
| C const & | cereal::queue_detail::container (std::priority_queue< T, C, Comp > const &priority_queue) |
| | Allows access to the protected container in priority queue.
|
| |
|
template<class T , class C , class Comp > |
| Comp const & | cereal::queue_detail::comparator (std::priority_queue< T, C, Comp > const &priority_queue) |
| | Allows access to the protected comparator in priority queue.
|
| |
|
template<class Archive , class T , class C > |
| void | cereal::CEREAL_SAVE_FUNCTION_NAME (Archive &ar, std::queue< T, C > const &queue) |
| | Saving for std::queue.
|
| |
|
template<class Archive , class T , class C > |
| void | cereal::CEREAL_LOAD_FUNCTION_NAME (Archive &ar, std::queue< T, C > &queue) |
| | Loading for std::queue.
|
| |
|
template<class Archive , class T , class C , class Comp > |
| void | cereal::CEREAL_SAVE_FUNCTION_NAME (Archive &ar, std::priority_queue< T, C, Comp > const &priority_queue) |
| | Saving for std::priority_queue.
|
| |
|
template<class Archive , class T , class C , class Comp > |
| void | cereal::CEREAL_LOAD_FUNCTION_NAME (Archive &ar, std::priority_queue< T, C, Comp > &priority_queue) |
| | Loading for std::priority_queue.
|
| |
Support for types found in <queue>