mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 10:50:23 +08:00
17 lines
249 B
C++
17 lines
249 B
C++
#pragma once
|
|
|
|
#include "ui_RuleWidget.h"
|
|
|
|
class QvNodeRuleWidget
|
|
: public QWidget
|
|
, private Ui::RuleWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QvNodeRuleWidget(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
};
|