Including in .cpp files

Is this considering "good practice"? Just wondering.

I.e.:

1
2
3
4
5
6
7
8
9
//something.cpp

#include "something.h"
#include "somethingelse.h"

void something::foo(somethingelse* thing) {
    thing->bar();
    //...
}
Yes. That's the way it is supposed to work.
Ok, thanks!
Topic archived. No new replies allowed.