calculator/src/CalcManager
Cyril b8b0fdf86b Improving code style : verbosity, indentation levels (#200)
Fixing some nested if() statements and reducing indentation levels.

Making some sections less verbose, e.g:

if (a == 1)
{
    b = true;
}
else
{
    b = false;
}
↓

b = (a == 1)
2019-03-18 12:31:04 -07:00
..
CEngine Improving code style : verbosity, indentation levels (#200) 2019-03-18 12:31:04 -07:00
Header Files Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
Ratpack Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
CalcManager.vcxproj Build with /W4 (#197) 2019-03-08 23:15:28 -08:00
CalcManager.vcxproj.filters Fix declarations of functions (#186) 2019-03-13 13:15:08 -07:00
CalculatorHistory.cpp Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
CalculatorHistory.h Hello GitHub 2019-01-28 16:24:37 -08:00
CalculatorManager.cpp Improving code style : verbosity, indentation levels (#200) 2019-03-18 12:31:04 -07:00
CalculatorManager.h Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
CalculatorResource.h Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
CalculatorVector.h Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
Command.h Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
ExpressionCommand.cpp Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
ExpressionCommand.h Build with /W4 (#197) 2019-03-08 23:15:28 -08:00
ExpressionCommandInterface.h Add override keyword where applicable (#188) 2019-03-08 11:18:01 -08:00
pch.cpp Hello GitHub 2019-01-28 16:24:37 -08:00
pch.h Replace custom ARRAYSIZE macro with std::size (#208) 2019-03-14 21:06:12 -07:00
targetver.h Hello GitHub 2019-01-28 16:24:37 -08:00
UnitConverter.cpp Improving code style : verbosity, indentation levels (#200) 2019-03-18 12:31:04 -07:00
UnitConverter.h Eliminate redundant copies of EMPTY_UNIT object, saving 2.5 KB. (#235) 2019-03-12 19:24:37 -07:00