I’m doing a project needing 2 constants:
Minimum Size of application (Width, Height)
Initial Size of application (Width, Height)
I would like to know which would take less memory cossumption to do:
1- One QSize (which the variable would contain the initial width and
height and the minimum being scaled of this QSize)2- 4 ints (MinH, MinW, IniH, IniW)
Thanks for your suggestions !
Code:
Outputs:
you do the math.