📄 localfunction.h
字号:
/***************************************************************** * * abstract class representing a local function in a function node * *****************************************************************/ #ifndef LOCALFUNCTION_H#define LOCALFUNCTION_Hclass LocalFunction {public: //virtual mehtod to be implemented by subclasses. getResul should return the function value for a given variableValues[] virtual double getResult(const int *args, int length) = 0;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -