| @root | classes |
class Arithmetica | ^ |
Arithmetica is a class which handles the read/eval/print loop It will take a line of inputted text, and parse it through, splitting it into numbers, variables, operators, and parentheses.It will then transform a vector of these different types, turn it into a postfix array stack and evaluate it as a tree.
- Source:
- Arithmetica.h:50
- Author:
- unascribed
- Version:
- unknown
Contents | ^ |
Entity Type Scope Short Description ~Arithmetica destructor public automatically generated Arithmetica constructor public make a default Arithmetica Arithmetica constructor public automatically generated getInputNumber method public returns the number of the expression the user is currently on for display purposes operator = operator public automatically generated Process method public accepts the inputted line of expression and parses and evaluates it through a series of helper functions
destructor ~Arithmetica | ? ^ > |
automatically generated
- Source:
- Arithmetica.h
- Code:
public ~ Arithmetica ( )
constructor Arithmetica | ? ^ < > |
make a default Arithmetica
- Source:
- Arithmetica.h:55
- Code:
public Arithmetica ( )
constructor Arithmetica | ? ^ < > |
automatically generated
- Source:
- Arithmetica.h
- Code:
public Arithmetica ( const Arithmetica & )
method getInputNumber | ? ^ < > |
returns the number of the expression the user is currently on for display purposes
- Source:
- Arithmetica.h:65
- Code:
public int getInputNumber ( )
operator = | ? ^ < > |
automatically generated
- Source:
- Arithmetica.h
- Code:
public Arithmetica & operator = ( const Arithmetica & )
method Process | ? ^ < > |
accepts the inputted line of expression and parses and evaluates it through a series of helper functions
- Source:
- Arithmetica.h:60
- Code:
public void Process ( string )
Created Mon Oct 7 11:43:04 2002.
This documentation was generated automatically by
ccdoc v0.8 r26 2001/11/28 bin_opt_suncc_solaris-2.8.
Click here to submit a bug report or feature request.
Click here to return to the top of the page.