map.h is an STL header file that contains the definitions of:
#include <map> int main() { std::map<int, int> m; std::multi_map<int, int> n; //Do things with m and n }