Files
nekoray/fmt/ChainBean.hpp
2022-11-18 14:20:30 +09:00

19 lines
460 B
C++

#pragma once
#include "main/NekoRay.hpp"
namespace NekoRay::fmt {
class ChainBean : public AbstractBean {
public:
QList<int> list; // in to out
ChainBean() : AbstractBean(0) {
_add(new configItem("list", &list, itemType::integerList));
};
QString DisplayType() override { return QObject::tr("Chain Proxy"); };
QString DisplayAddress() override { return ""; };
};
} // namespace NekoRay::fmt