Qt_1 - 8BitsCoding/RobotMentor GitHub Wiki

이미지

Qt Console Application 생성

#include <QtCore/QCoreApplication>

int main(int argc, char *argv[])
{
	QCoreApplication a(argc, argv);

	return a.exec();
}

소스내부는 위와 같다.

이미지

참고로 QCoreApplication은 QtGUI의 Base Class이다.