Blame view

src/expressionParser/FunctionInfo.cc 607 Bytes
0d5a1aa5   Benjamin Renard   Parser: add a fun...
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
/*
 * FunctionInfo.cc
 *
 *  Created on: Mar 19, 2019
 *      Author: AKKA
 */

#include "FunctionInfo.hh"

namespace AMDA {
namespace parser {

std::ostream& operator<<(std::ostream& out, const FunctionInfo& info){

	out << "[FunctionInfo]" << std::endl;
	out << "{"<<std::endl;
	out << "  _ihmName    = " << info._ihmName << std::endl;
	out << "  _kernelName = " << info._kernelName << std::endl;
	out << "  _nbArgs     = " << info._nbArgs << std::endl;
	out << "  _hasPrompt  = " << info._hasPrompt << std::endl;
	out << "}" << std::endl;
	return out;
}

} /* namespace parser */
} /* namespace AMDA */