amath  1.8.5
Simple command line calculator
SineNode Class Reference

A sine function in a syntax tree. More...

#include <sine.h>

Inheritance diagram for SineNode:
Collaboration diagram for SineNode:

Public Member Functions

 SineNode (ExpressionNode *expression, char *text, char *sys)
 
NumberEvaluate ()
 
- Public Member Functions inherited from FunctionNode
 FunctionNode (ExpressionNode *expression, char *text, char *sys)
 
 ~FunctionNode ()
 
int GetPrecedence ()
 
char * GetText ()
 
virtual SyntaxNodeGetNext ()
 
virtual void Attach (SyntaxNode *node)
 
virtual void Detach (SyntaxNode *node)
 
virtual void Replace (SyntaxNode *n, SyntaxNode *x)
 
- Public Member Functions inherited from ExpressionNode
 ExpressionNode ()
 
 ExpressionNode (Number *value)
 
virtual ~ExpressionNode ()
 
NodeType GetNodeType ()
 
virtual bool IsSilent ()
 
char * GetTextCode ()
 
char * Execute ()
 
- Public Member Functions inherited from SyntaxNode
 SyntaxNode ()
 
virtual ~SyntaxNode ()
 
void SetFirstNode ()
 
bool GetFirstNode () const
 
SyntaxNodeGetParent () const
 
void SetParent (SyntaxNode *node)
 
virtual ReductionType GetReductionType ()
 
virtual void ResetIterator ()
 

Static Public Member Functions

static FunctionNodeCreate (ExpressionNode *expression, char *text, char *sys)
 

Additional Inherited Members

- Protected Member Functions inherited from FunctionNode
virtual char * GetNodeText ()
 
- Protected Attributes inherited from FunctionNode
ExpressionNodeexpression
 
char * name
 
char * sysname
 
- Protected Attributes inherited from ExpressionNode
Numberresult
 
- Protected Attributes inherited from SyntaxNode
CharBufferoutput
 
SyntaxNodeparent
 
SyntaxNodeiterator
 
bool leftBottom
 

Detailed Description

A sine function in a syntax tree.

More info on the sine function is available at Wikipedia: https://wikipedia.org/wiki/Sine

Definition at line 42 of file sine.h.

Constructor & Destructor Documentation

◆ SineNode()

SineNode::SineNode ( ExpressionNode expression,
char *  text,
char *  sys 
)
explicit

Definition at line 32 of file sine.cpp.

References FunctionNode::FunctionNode().

Referenced by Create().

32  :
33  FunctionNode(expression, text, sys)
34 {
35 }
FunctionNode(ExpressionNode *expression, char *text, char *sys)
Definition: node.cpp:34
Here is the call graph for this function:
Here is the caller graph for this function:

Member Function Documentation

◆ Create()

FunctionNode * SineNode::Create ( ExpressionNode expression,
char *  text,
char *  sys 
)
static

Definition at line 37 of file sine.cpp.

References SineNode().

38 {
39  return new SineNode(expression, text, sys);
40 }
SineNode(ExpressionNode *expression, char *text, char *sys)
Definition: sine.cpp:32
Here is the call graph for this function:

◆ Evaluate()

Number * SineNode::Evaluate ( )
virtual

Implements ExpressionNode.

Definition at line 42 of file sine.cpp.

References ExpressionNode::Evaluate(), FunctionNode::expression, ExpressionNode::result, and Number::Sine().

43 {
45  return result;
46 }
virtual Number * Sine()=0
virtual Number * Evaluate()=0
Number * result
Definition: nodes.h:116
ExpressionNode * expression
Definition: node.h:66
Here is the call graph for this function:

The documentation for this class was generated from the following files: