#ifndef SENTTXSTORE_H #define SENTTXSTORE_H #include "precompiled.h" #include "mainwindow.h" #include "controller.h" class SentTxStore { public: static void deleteHistory(); static QList readSentTxFile(); static void addToSentTx(Tx tx, QString txid); private: static QString writeableFile(); }; #endif // SENTTXSTORE_H