not as far as i know... i could be wrong (but i am 99.999999999999999999999999999999999% sure i'm not!).. i have never done that..
header:
source:Code://header.h void test(); void test2();
keep in mind:Code:include "header.h" //implement function
file A.h
file B.h
file C.h
file A.cpp
file B.cpp
file C.cpp
you have:
A:
include B.h
B:
include C.h
and you have in another file
include A.h
if you have only functions, you will be able to access functions in A, B and C.




Reply With Quote