Blame view

src/expressionParser/ArgListInfo.cc 616 Bytes
ea6be348   Benjamin Renard   Support arguments...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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 */