알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
signal 동기화가 필요할때 본문
가끔식 시그널의 리턴을 받고 다음 구문을 실행 해야 할때가 있습니다.
QNetworkRequest request;
request.setUrl(QUrl("http://10.29.10.66:8282/get_pad_job_state"));
QNetworkReply *netReply = web_manger->get(request);
QEventLoop loop;
connect(netReply,SIGNAL(finished()),&loop,SLOT(quit()));
loop.exec();
'QT' 카테고리의 다른 글
QPrinter for QTextEdit 예제 (0) | 2018.06.26 |
---|---|
Qt json 파싱 with webpage(ajax) 간단 사용법 (0) | 2018.04.09 |
ubuntu qt 필요 라이브러리 path 설정하기 (0) | 2018.03.23 |
corect.h 에러 날때. (0) | 2018.03.04 |
Cannot run compiler 'cl'. Maybe you forgot to setup the environment? 날때 . (0) | 2018.03.04 |
Comments