#include <map>
#include <unordered_map>
#include <utility>
Go to the source code of this file.
|
| namespace | hgps |
| | Top-level namespace for Health-GPS Console host application.
|
| |
|
| template<class TRow , class TCol , class TCell > |
| using | hgps::UnorderedMap2d = Map2d< std::unordered_map, TRow, TCol, TCell > |
| | Defines the two-dimensional unordered map data type.
|
| |
| template<class TRow , class TCol , class TCell > |
| using | hgps::OrderedMap2d = Map2d< std::map, TRow, TCol, TCell > |
| | Defines the two-dimensional ordered map data type.
|
| |