header file in c++

X

Xohaib

hey guys i wnat to make a my own header file like i want that i make a
header file exmple.h and i want that when i use exmple.h i should not
need to include iostream.h and one other header files like this. So
how can i make it in VC++ (IDE). I shall b very thankfull to you.......
 
H

Han

hey guys i wnat to make a my own header file like i want that i make a
header file exmple.h and i want that when i use exmple.h i should not
need to include iostream.h and one other header files like this. So
how can i make it in VC++ (IDE). I shall b very thankfull to you.......

I think you can include the head file you want in the head file you
make by yourself....
or maybe your question is not so simple?
 
J

Jim Langston

Han said:
I think you can include the head file you want in the head file you
make by yourself....
or maybe your question is not so simple?

Also, I'd like to point out that the header file is <iostream> not
<iostream.h> iostream.h is a pre-standard header.
And, like Han says, just include the headers in your header. Headers should
always include headers that they need to compile.
 
G

Guest

Also, I'd like to point out that the header file is <iostream> not
<iostream.h> iostream.h is a pre-standard header.
And, like Han says, just include the headers in your header. Headers should
always include headers that they need to compile.

A tip I read in here recently: often you can get away with just
including <iosfwd> in the header-file and include stuff like <iostream>,
<fstream>, etc. in the .cpp-file. I think that can speed up the
compilation a bit but I do not have any projects of size to test on at
the moment.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,273
Latest member
DamonShoem

Latest Threads

Top