ArgListInfo.cc
616 Bytes
/*
* ArgListInfo.cc
*
* Created on: Dec 03, 2020
* Author: AKKA
*/
#include "ArgListInfo.hh"
namespace AMDA {
namespace parser {
std::ostream& operator<<(std::ostream& out, const ArgListInfo& info){
out << "[ArgListInfo]" << std::endl;
out << "{"<<std::endl;
out << " _id = " << info._id << std::endl;
for (std::map<std::string, std::string>::const_iterator it = info.getValues().begin(); it != info.getValues().end(); ++it) {
out << "_value = " << it->first << " - " << it->second << std::endl;
}
out << "}" << std::endl;
return out;
}
} /* namespace parser */
} /* namespace AMDA */