You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
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.