|
Contents:
Search: |
MQL languageOverviewThe MQL language interface consists of three functions, each of which differs from the others only in the kind of input it takes:
ArgumentsThe following are the other arguments, common to them all:
C++ interface#include <emdros/mql_execute.h> extern bool mql_execute_file(CMQL_execution_environment *pEE, std::string filename, bool{PREAMP} bResult, bool bPrintResult, bool bReportError); extern bool mql_execute_stream(CMQL_execution_environment *pEE, std::istream{PREAMP} strin, bool{PREAMP} bResult, bool bPrintResult, bool bReportError); extern bool mql_execute_string(CMQL_execution_environment *pEE, const std::string{PREAMP} input, bool{PREAMP} bResult, bool bPrintResult, bool bReportError); |