Hello all. I was wondering is there a way to create my own header files? Lets say I want to implant Binary Tree class. I don't want to copy and add BinaryTree.cpp and BinaryTree.h to each of my projects that will use it, instead I want to put the .h file in /usr/include and be able to write: #include <BinaryTree.h> In every project that needs it. But as you know I will get a bunch of errors (probably "unresolved external symbol"). So how it is possible to make this work?
Thanks a lot!