This commit is contained in:
Misaki
2026-06-10 00:57:54 +08:00
commit 7551a85abe
2805 changed files with 373529 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef T_CARD_H
#define T_CARD_H
#include "T_BasePage.h"
class ElaLCDNumber;
class ElaPromotionCard;
class ElaPromotionView;
class T_Card : public T_BasePage
{
Q_OBJECT
public:
Q_INVOKABLE explicit T_Card(QWidget* parent = nullptr);
~T_Card();
private:
ElaLCDNumber* _lcdNumber{nullptr};
ElaPromotionCard* _promotionCard{nullptr};
ElaPromotionView* _promotionView{nullptr};
};
#endif // T_CARD_H