amath  1.8.5
Simple command line calculator
ExcosecantNode Class Reference

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

#include <excosecant.h>

Inheritance diagram for ExcosecantNode:
Collaboration diagram for ExcosecantNode:

Public Member Functions

 ExcosecantNode (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 excosecant function in a syntax tree.

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

Definition at line 42 of file excosecant.h.

Constructor & Destructor Documentation

◆ ExcosecantNode()

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

Definition at line 32 of file excosecant.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 * ExcosecantNode::Create ( ExpressionNode expression,
char *  text,
char *  sys 
)
static

Definition at line 37 of file excosecant.cpp.

References ExcosecantNode().

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

◆ Evaluate()

Number * ExcosecantNode::Evaluate ( )
virtual

Implements ExpressionNode.

Definition at line 42 of file excosecant.cpp.

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

43 {
45  return result;
46 }
virtual Number * ExCosecant()=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: