pgLab/util.h
Eelke Klein 242f5464df Added generic copySelectionToClipboard function that takes the selection
of a model based tableview and copies the data as CSV to the clipoard.
2017-02-04 11:54:18 +01:00

10 lines
197 B
C

#ifndef UTIL_H
#define UTIL_H
#include <QString>
#include <QTableView>
QString msfloatToHumanReadableString(float ms);
void copySelectionToClipboard(const QTableView *view);
#endif // UTIL_H