#include using namespace std; #include "ReadParse.h" int main() { ReadParse mycgi; mycgi.PrintHeader(); map::iterator pos; for(pos=mycgi.in.begin(); pos != mycgi.in.end(); ++pos) { cout << "Name: " << pos->first << "," << "Value: " << pos->second << "
" << endl; cout << "
\n"; } }