1

I have a header file DCM_Types.hh which is in fact located in the project directory. Why cannot find the source file?

enter image description here

Jonathan Kittell
  • 7,163
  • 15
  • 50
  • 93

2 Answers2

2

Angle brackets are used to indicate the inclusion of system headers. Use quotation marks to include a non-system header.

#include <system_header.h>

#include "personal_header.h"

MarcD
  • 588
  • 3
  • 11
1

Try #include "DCM_Types.hh" <> if for system headers "" is your headers in your program/searches in the current directory

AKS
  • 11
  • 1