Qt what headers to include?

前端 未结 4 1426
我在风中等你
我在风中等你 2021-02-20 11:42

While programming in C++ with Qt what includes should I make? Just 2 includes

#include 
#include 

or



        
4条回答
  •  执念已碎
    2021-02-20 12:02

    The only difference is in compilation time. If you don't use precompile QtGui and QtCore headers, the compilation time will suffer greatly, and you should try to avoid that.

提交回复
热议问题