I have a header file DCM_Types.hh which is in fact located in the project directory. Why cannot find the source file?
Asked
Active
Viewed 830 times
1
Jonathan Kittell
- 6,475
- 13
- 48
- 87
-
2Please post your code as text; screenshots are not particularly useful. – Keith Thompson Oct 12 '16 at 20:19
-
first, post as text, then a screenshot _without_ the file extensions is misleading. – Jean-François Fabre Oct 12 '16 at 20:19
2 Answers
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
- 568
- 3
- 9
1
Try #include "DCM_Types.hh" <> if for system headers "" is your headers in your program/searches in the current directory
AKS
- 11
- 1