Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/qt/csvmodelwriter.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2011-2014 The Bitcoin Core developers
// Copyright (c) 2016 The Ion Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include "csvmodelwriter.h"

#include <QAbstractItemModel>
Expand Down Expand Up @@ -85,4 +90,3 @@ bool CSVModelWriter::write()

return file.error() == QFile::NoError;
}

13 changes: 9 additions & 4 deletions src/qt/csvmodelwriter.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#ifndef CSVMODELWRITER_H
#define CSVMODELWRITER_H
// Copyright (c) 2011-2014 The Bitcoin Core developers
// Copyright (c) 2016 The Ion Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef ION_QT_CSVMODELWRITER_H
#define ION_QT_CSVMODELWRITER_H

#include <QObject>
#include <QList>
#include <QObject>

QT_BEGIN_NAMESPACE
class QAbstractItemModel;
Expand Down Expand Up @@ -39,4 +44,4 @@ class CSVModelWriter : public QObject
QList<Column> columns;
};

#endif // CSVMODELWRITER_H
#endif // ION_QT_CSVMODELWRITER_H