12 lines
280 B
C++
12 lines
280 B
C++
#ifndef UTILITYS_H
|
|
#define UTILITYS_H
|
|
|
|
#include <QString>
|
|
#include <stdint.h>
|
|
#include <array>
|
|
|
|
bool saveToCsv(const QString& filename, const std::vector<double> &keys, const std::vector<double> &values, const QString& keyLable, const QString& valueLable);
|
|
|
|
|
|
#endif // UTILITYS_H
|