VapourSynth-llvmexpr
Loading...
Searching...
No Matches
InfixConverter.hpp
Go to the documentation of this file.
1
19
20#ifndef LLVMEXPR_FRONTEND_INFIXCONVERTER_HPP
21#define LLVMEXPR_FRONTEND_INFIXCONVERTER_HPP
22
24
25#include <map>
26#include <string>
27
28std::string convert_infix_to_postfix(
29 const std::string& infix_expr, int num_inputs, infix2postfix::Mode mode,
30 const std::map<std::string, std::string>* predefined_macros = nullptr,
31 int num_intermediate_inputs = 0);
32
33#endif
std::string convert_infix_to_postfix(const std::string &infix_expr, int num_inputs, infix2postfix::Mode mode, const std::map< std::string, std::string > *predefined_macros=nullptr, int num_intermediate_inputs=0)