Strange error with .h

Hi!

compiling a simple code i get this error:

c:\vxl\vxl - 1.6.0\core\vnl\vnl_matrix.h(12) : fatal error C1083: Cannot open include file: 'vnl/vnl_tag.h' : No such file or directory.

I work with VS 6.0 and i have added to Tools/Options/Directories the folder where vnl_matrix.h and vnl_tag.h are.

Why does it give that error?

[335 byte] By [tirengarfio] at [2007-12-23]
# 1

It looks like vnl_matrix.h and vnl_tag.h are in the same directory. It also looks like your include line is something like #include "vnl/vnl_tag.h". If this is the case, try changing it to #include "vnl_tag.h". Since the including file and the file to include are in the same directory, you shouldn't need to specify the path.

If it's not like this, it'd be cool if you could provide a little more information about where your files are located and what your include directive looks like.

Opfer at 2007-8-30 > top of Msdn Tech,Visual C++,Visual C++ General...
# 2
Thanks!
tirengarfio at 2007-8-30 > top of Msdn Tech,Visual C++,Visual C++ General...