#ifndef TERMCALC_CALC_HPP #define TERMCALC_CALC_HPP #include #include #include #include typedef long double flt_t; typedef long int int_t; typedef std::string strr; typedef flt_t(*fptr)(flt_t, flt_t); // for a function with two arguments typedef std::map op_t; #endif //TERMCALC_CALC_HPP