In my project I use two libraries, v8 and boost. Boost uses the .hpp
extension for its headers, while v8 uses the .h
extension for its headers.
In the end of day, my source code starts like that:
#include "v8.h"
#include "boost/filesystem.hpp"
...
In other question I asked about this subject, the general answer was that it is okay, but I just should be consistent between names.
This code compiles well, but, coding styles/standards - is it okay? Is there any solution for this problem (like changing all .hpp
to .h
automatically somehow?)
Thanks. And sorry for those stupid questions.