일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 도커
- DevOps
- 리눅스
- 우분투
- VPN
- ubuntu
- Linux
- ssh
- 루비
- opsworks
- docker registry
- 드라이버
- ssh command
- QT
- driver
- window size
- RUBY
- sudo
- golang
- Openswan
- docker
- port
- docker container
- docker-compose
- VMware
- 방화벽체크
- 패키지
- VIM
- AWS
- Chef
- Today
- Total
구리의 창고
QT Programming - 중복실행 방지 본문
메신저같은 프로그램을 만들다보면 한 개만 실행해야 할 때가 있다.
특별한 인자는 없으며 공유메모리를 사용해야한다.
#include "MyApp.h"
#include <QtGui/QApplication>
#include <QSharedMemory>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MyApp w;
QSharedMemory shared("very-very-unique-key");
if (!shared.create(512, QSharedMemory::ReadWrite))
{
exit(0);
}
w.show();
return a.exec();
}
위와 같이 간단하게 해결!
특별한 인자는 없으며 공유메모리를 사용해야한다.
위와 같이 간단하게 해결!
'QT' 카테고리의 다른 글
QT Programming - QTreeView 색 변경 (0) | 2011.07.26 |
---|---|
QT Programming - QTreeView 아이템 정보 가져오기 (1) | 2011.07.21 |
QT Programming - 프로그램 아이콘 지정하기 (0) | 2011.07.20 |
QT Programming - 이벤트 필터 설치 (이벤트 핸들러 가져오기) (0) | 2011.07.15 |
QT Programming - 바탕화면 좌표 정보가져오기 (0) | 2011.07.13 |
Comments