calculator/src/CalcManager/Header Files
Scott Freeman 6366e0c535 Replacing CalculatorVector usage with std::vector (#756)
* Replacing CalculatorVector usage with std::vector

Assumptions made here are that memory allocations
are not recoverable.  If it can be proved that an index
will be in range, then the indexing operation is used.
If not (without manual checks) the std::vector::at function
is used to throw an exception in case of a programmer bug.

* Changes based on PR feedback

Using auto& in CalculatorCollector::UpdateHistoryExpression
so the token.first value is properly updated.

Using range for loop to GenerateExpressions.

Setting isEditable directly to the result of boolean expression.

Using token.second directly instead of creating a
separate tokenCommandIndex variable.

* Fixing issue with generating expressions strings.

A space should not be added before the first item.
2019-10-30 10:55:13 -07:00
..
CalcEngine.h Replacing CalculatorVector usage with std::vector (#756) 2019-10-30 10:55:13 -07:00
CalcInput.h Update Calc Engine for new functions needed for keyboard refresh (#662) 2019-09-30 14:04:20 -07:00
CalcUtils.h Replace custom types with standard ones (#212) 2019-03-26 14:30:46 -07:00
CCommand.h Update Calc Engine for new functions needed for keyboard refresh (#662) 2019-09-30 14:04:20 -07:00
EngineStrings.h Update Calc Engine for new functions needed for keyboard refresh (#662) 2019-09-30 14:04:20 -07:00
History.h Replacing CalculatorVector usage with std::vector (#756) 2019-10-30 10:55:13 -07:00
ICalcDisplay.h Replacing CalculatorVector usage with std::vector (#756) 2019-10-30 10:55:13 -07:00
IHistoryDisplay.h Replacing CalculatorVector usage with std::vector (#756) 2019-10-30 10:55:13 -07:00
Number.h Compile CalcManager project with or without precompiled headers (#436) 2019-04-17 17:28:45 -07:00
RadixType.h Fix the project code style, as it is not consistent. (#236) 2019-05-02 11:59:19 -07:00
Rational.h Rename scimath.h/cpp to RationalMath.h/cpp (#36) 2019-02-25 14:04:38 -08:00
RationalMath.h Modify how modulo is calculated in Normal and Scientific mode. (#412) 2019-04-16 17:17:24 -07:00