Example #1
0
// Деструктор
Wave::~Wave()
{
    QObject::disconnect(waveTimer, SIGNAL(timeout()), this, SLOT(startWave()));
    delete waveTimer;    
}
Example #2
0
void startTriangle()
{
	startWave(3);
}
Example #3
0
void startSquare()
{
	startWave(1);
}
Example #4
0
void startSawtooth()
{
	startWave(2);
}
Example #5
0
void startSine()
{
	startWave(0);
}