Do I need inline template functions if they are included in several cpp files? Thanks.
inline
cpp
template inline QString GetText(
It seem that the template method must be defined in the same file which is building, You don't need to use the 'inline' keyword for they were build in each cpp file which include it.