Hello_base.h from qt's hello examples

Spice
Hi,
does anybody know, why they #include "hello_base.h" in the hello.h file
from the examples ? and where to find hello_base.h or for what they include
it?
thx for any help

Yayati Ekbote
Hi Spice,

The "hello_base.h" file is generated by uic while compiling. The thing u
should take care of is, ur UI file's name must be same as the file u
include in header file.For example

If ur UI file's name is hello_base.ui

then in ur header file hello.h
u include

#include "hello_base.h"

this means uic converts hello_base.ui into hello_base.h compile time.So
just take care that ur UI file name and include-header file name must be
same.