i have a question where i should place #includes in a file?
Here is what i tend to have
example.h
#include <iostream>
#include <string>
example.cpp
#include <iostream>
#include "example.h"
------------------------------------------------
Is This what i want?
example.h
#include <iostream>
#include <string>
example.cpp
#include "example.h"
What should i strive to achieve?
1.) Place all included possible in the .h file needed to compile without error...if wont compile because .cpp is missing includes then place needed includes to compile in .cpp file?