This repository was archived by the owner on Jan 29, 2023. It is now read-only.
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
suggest replacing all files xxxx_Impl.h by xxxx.cpp #22
Closed
Description
May I suggest suggest replacing all files xxxx_Impl.h by xxxx.cpp?
Having all code in .h header files creates linking errors if you "#include <MySQL_Generic>" from different .cpp modules of the same project, because the linker will find several times functions with the same name.
Having a proper .h corresponding to a proper .cpp, you can include the .h several times from everywhere without causing lining problems.
It happened to me.
Just a suggestion.