Qt프로그래밍으로의 첫걸음

Qt Programming
항상 모든 언어를 시작할때는 Hello World!를 출력하면서 시작된다.
Qt프로그래밍도 예외는 아니다.
이번 예제는 "Hello Qt!"를 출력하는 것이다.

#include <QAPPLICATION>
#include <QLABEL>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel *label = new QLabel("Hello Qt!");
    label->show();
    return app.exec();
}


출력 결과

'Qt Programming' 카테고리의 다른 글

시그널/슬롯  (0) 2011.02.22
SIGNAL/SLOT  (0) 2011.02.13
Qt프로그래밍 개발툴 설치  (0) 2011.02.13