summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_kernel_qsound.cpp
blob: bdbd1cec0bc6ad21aec8c49cdf0f6cb42f01924a (plain)
1
2
3
4
5
6
7
8
9
//! [0]
QSound::play("mysounds/bells.wav");
//! [0]


//! [1]
QSound bells("mysounds/bells.wav");
bells.play();
//! [1]