calculator/src
Daniel Belcher dd79d6fcd3 Move the CalculatorManager instance to be direct member data of the StandardCalculatorViewModel class.
Previously, the CalculatorManager was managed with a unique_ptr that was instantiated in the ViewModel's constructor and was never re-assigned.  Objects with long lifetime and larger memory footprint should live in dynamic memory, but the ViewModel itself lives in dynamic memory so that goal is still satisfied by storing the CalculatorManager directly in the class. The change allows the compiler to write a more efficient memory footprint for the same data.

- Verified by testing basic app functionality and running unit tests locally.
2019-02-28 16:26:19 -08:00
..
build Hello GitHub 2019-01-28 16:24:37 -08:00
CalcManager Apply spell check (#41) 2019-02-26 20:41:04 -08:00
Calculator Apply spell check (#41) 2019-02-26 20:41:04 -08:00
CalculatorUnitTests Move the CalculatorManager instance to be direct member data of the StandardCalculatorViewModel class. 2019-02-28 16:26:19 -08:00
CalcViewModel Move the CalculatorManager instance to be direct member data of the StandardCalculatorViewModel class. 2019-02-28 16:26:19 -08:00
Calculator.sln Clean up unit test projects (#4) 2019-01-29 19:37:37 -08:00
nuget.config Hello GitHub 2019-01-28 16:24:37 -08:00
Settings.XamlStyler Hello GitHub 2019-01-28 16:24:37 -08:00