I have a big class A that has dozens included headers, each header has its own included header as well.
I'm creating a new class that would use a function which is also used in class A. I do not want to include the whole class A in my new class, so I try to find the header who brought that function to class A.
What's the best way to do it?