.. _program_listing_file_include_eigenpy_std-map.hpp: Program Listing for File std-map.hpp ==================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/eigenpy/std-map.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef __eigenpy_std_map_hpp__ #define __eigenpy_std_map_hpp__ #include "eigenpy/map.hpp" #include "eigenpy/deprecated.hpp" #include namespace eigenpy { template using overload_base_get_item_for_std_map EIGENPY_DEPRECATED_MESSAGE( "Use overload_base_get_item_for_map<> instead.") = overload_base_get_item_for_map; namespace details { using ::eigenpy::overload_base_get_item_for_std_map; } // namespace details template , class Allocator = std::allocator>, bool NoProxy = false> struct StdMapPythonVisitor : GenericMapVisitor, NoProxy> {}; namespace python { // fix previous mistake using ::eigenpy::StdMapPythonVisitor; } // namespace python } // namespace eigenpy #endif // ifndef __eigenpy_std_map_hpp__