I have a big header file, but in a program, I only need a few specific variable defined in that header.
Is there any way in c++ that I tell it to include only that specific variable ?
And, yes, the variable has to be in that header file only.
What is the disadvantage if I include the entire header file (as I am doing it now) ?