My question is, if I have created my own library which lives in its own
install directory, to refer to its header file is it better to use
#include "MyLibrary. h"
or
#include <MyLibrary.h>
Assume that this library will be used by other groups. I think the answer
should be use the "<>" notation but I would be interested why.
cheers
Tuckers
install directory, to refer to its header file is it better to use
#include "MyLibrary. h"
or
#include <MyLibrary.h>
Assume that this library will be used by other groups. I think the answer
should be use the "<>" notation but I would be interested why.
cheers
Tuckers
Comment