| 9 | #include "AppView/MainWidget.h" |
| 10 | |
| 11 | MainWidget::MainWidget(RedisCluster *redisClient, QWidget *parent) : |
| 12 | QWidget(parent), |
| 13 | ui(new Ui::MainWidget) |
| 14 | { |
| 15 | initSet(redisClient); |
| 16 | initView(); |
| 17 | initKeyView(); |
| 18 | initSlot(); |
| 19 | } |
| 20 | |
| 21 | MainWidget::~MainWidget() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected