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
AudioSample.h
Go to the documentation of this file.
1//=======================================================================
25//=======================================================================
26
27#ifndef AUDIOSAMPLE_H
28#define AUDIOSAMPLE_H
29
30#include <QObject>
31
41 QString fileName;
42 QString path;
43
56 const QString &fileName,
57 const QString &path)
59};
60
61#endif // AUDIOSAMPLE_H
Represents an audio sample retrieved from a database.
Definition: AudioSample.h:39
QString fileName
The name of the file associated with the sample.
Definition: AudioSample.h:41
int sampleId
The unique identifier of the sample in the database.
Definition: AudioSample.h:40
QString path
The file system path to the audio file.
Definition: AudioSample.h:42
AudioSample(int sampleId, const QString &fileName, const QString &path)
Definition: AudioSample.h:55