I try do a recursive function in C++ when A is recursive and calls B, B calls A, but when is it compile, the compiler can't find one of the two function. Is normal in c++, but there a way to bypass this?
Edit : After read about forward declaration, I have solve this problem.