Files
Yosuga/3rdparty/ElaWidgetTools/example/ExamplePage/T_Card.h
T
Misaki bb600bbbc4 first
2025-12-04 19:11:29 +08:00

23 lines
425 B
C++

#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