first re-commit.
This commit is contained in:
46
libMiniCash/mctransactionview.h
Normal file
46
libMiniCash/mctransactionview.h
Normal file
@@ -0,0 +1,46 @@
|
||||
/***************************************************************************
|
||||
|
||||
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
|
Reference in New Issue
Block a user