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
CSVExporter.h
Go to the documentation of this file.
1//=======================================================================
25//=======================================================================
26
27#ifndef CSVEXPORTER_H
28#define CSVEXPORTER_H
29
30#include <QList>
31#include <QString>
32
33#include "TestSessionData.h"
34
45public:
54 void exportToCSV(const QList<TestSessionData>& data, const QString& filePath);
55};
56
57#endif // CSVEXPORTER_H
The CSVExporter class provides functionality to export data to a CSV file.
Definition: CSVExporter.h:44
void exportToCSV(const QList< TestSessionData > &data, const QString &filePath)
Export data to a CSV file.
Definition: CSVExporter.cpp:32