Files
SilentDragonXLite/src/chatbubblepartner.h
onryo 3c2414028b Revert "Merge branch 'dev'"
This reverts commit 4a7dd7f959, reversing
changes made to a89a0cc1c6.
2024-01-06 16:27:48 +01:00

25 lines
416 B
C++

// Copyright 2019-2023 The Hush developers
// Released under the GPLv3
#ifndef CHATBUBBLEPARTNER_H
#define CHATBUBBLEPARTNER_H
#include <QWidget>
namespace Ui {
class ChatBubblePartner;
}
class ChatBubblePartner : public QWidget
{
Q_OBJECT
public:
explicit ChatBubblePartner(QWidget *parent = nullptr);
~ChatBubblePartner();
private:
Ui::ChatBubblePartner *ui;
};
#endif // CHATBUBBLEPARTNER_H