Files
miniCashAll/libMiniCash/mctransactionview.h
2025-08-05 22:37:51 +02:00

47 lines
993 B
C++

/***************************************************************************
miniCash
Copyright © 2022 christoph holzheuer
c.holzheuer@sourceworx.org
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
***************************************************************************/
#ifndef MCCTRANSACTIONVIEW_H
#define MCCTRANSACTIONVIEW_H
#include <QFrame>
#include <libMiniCash.h>
namespace Ui
{
class MCTransactionView;
}
class LIBMINICASH_EXPORT MCTransactionView : public QFrame
{
Q_OBJECT
public:
explicit MCTransactionView( QWidget* parent = nullptr );
virtual ~MCTransactionView();
public slots:
void onTransactionReceived( const QString& transaction );
protected:
Ui::MCTransactionView* _ui{};
};
#endif // MCCTRANSACTIONVIEW_H