FunctionInfo.cc 617 Bytes
/*
 * 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 << "  _nbPromptedArgs  = " << info._nbPromptedArgs << std::endl;
	out << "}" << std::endl;
	return out;
}

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