Author Topic: Include paths  (Read 3392 times)

nfactorial

  • EA Novice
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Include paths
« on: September 12, 2003, 12:31:59 pm »
Include paths do not reference the correct sub-directory? e.g. I have a base folder 'test' and place my interface headers in the directory 'test\interfaces' with my concrete classes inside the 'test' root directory. Within the implementation header file, Enterprise Architect generates the include path as:

#include "MyInterface.h"

instead of:

#include "Interfaces\MyInterface.h"

it would be nice if I could place my implementation inside another directory and get the correct local path generated, ie. my implementation placed  inside 'test\Implementation' the #include directive expands to:

#include "..\Interfaces\MyInterface.h"

n!