/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/qt/csvmodelwriter.h
46 строк
1 KB
MarcoFalke
scripted-diff: [doc] Unify stale copyright headers
17 дек 2025, 00:21
17 дек 2025, 00:21
fa5f297
Код
Авторство
О чём код?
// Copyright (c) 2011-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_CSVMODELWRITER_H #define BITCOIN_QT_CSVMODELWRITER_H #include <QList> #include <QObject> QT_BEGIN_NAMESPACE class QAbstractItemModel; QT_END_NAMESPACE /** Export a Qt table model to a CSV file. This is useful for analyzing or post-processing the data in a spreadsheet. */ class CSVModelWriter : public QObject { Q_OBJECT public: explicit CSVModelWriter(const QString &filename, QObject *parent = nullptr); void setModel(const QAbstractItemModel *model); void addColumn(const QString &title, int column, int role=Qt::EditRole); /** Perform export of the model to CSV. @returns true on success, false otherwise */ bool write(); private: QString filename; const QAbstractItemModel* model{nullptr}; struct Column { QString title; int column; int role; }; QList<Column> columns; }; #endif // BITCOIN_QT_CSVMODELWRITER_H