teval.h.svn-base
来自「ffshow源码」· SVN-BASE 代码 · 共 31 行
SVN-BASE
31 行
#ifndef _TEVAL_H_#define _TEVAL_H_class Teval{public: struct Tvariable { const char_t *name; const double *valPtr; };private: ffstring expr; const Tvariable *vars; const char_t *c; bool getVariable(const char_t *name,double *val); void next(void); void unknown(char_t *s); void syntax(void); double constant(void); double function(void); double term(void); static inline double factorial(double v); double H(void),G(void),F(void),E(void),C(void),L(void),S(void);public: Teval(const char_t *Ic,const Tvariable *Ivars); double operator ()(const char_t* *errPtr);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?