Map Multimap C++

#include 
#include 
#include 
using namespace std;
typedef map STRING2INT;
int main(void)
{
    STRING2INT DateMap;
    STRING2INT::iterator DateIterator;
    string DateBuffer;
    cout << "DateMap is capable of holding " << DateMap.max_size()
         << "  pairs" << endl;
 }