Question
When building a C++ STM32 Project, how do I associate the .hpp file extension with combined header and source templates and Class files?
In my regular C++ work, I use the BOOST library, and I've taken to using their .hpp style that combines header declarations and source definitions in one file for most of my C++ work. I try to not use separate .h and .cpp files any more, whether it is a template or a normal C++ class.
The way it is now, the system whines when I try to define a class with only one source or header file.
I want to add this to my global workspace properties, not do it for every project I create.
