AudibleT 0.0.1
A real-time A/B/X audio testing tool for subjective assessment of various audio parameters, compatible for general purpose computer as well as embedded systems.
Loading...
Searching...
No Matches
SessionTrial.h
Go to the documentation of this file.
1//=======================================================================
25//=======================================================================
26
27
28#ifndef SESSIONTRIAL_H
29#define SESSIONTRIAL_H
30
31#include <QObject>
32
46 int trialId;
50 QString userResponse;
51};
52
53#endif // SESSIONTRIAL_H
54
Represents a single trial within a testing session.
Definition: SessionTrial.h:45
int responseTime
The time taken by the user to respond, in milliseconds.
Definition: SessionTrial.h:48
int sessionId
The identifier of the session this trial belongs to.
Definition: SessionTrial.h:47
QString correctResponse
The correct response for this trial.
Definition: SessionTrial.h:49
int trialId
The unique identifier for this trial within the session.
Definition: SessionTrial.h:46
QString userResponse
The user's actual response for this trial.
Definition: SessionTrial.h:50