fort/src/ui/conf/app.cpp

11 lines
429 B
C++
Raw Normal View History

2023-01-22 17:17:28 +00:00
#include "app.h"
2023-04-04 09:22:41 +00:00
bool App::isEqual(const App &o) const
{
return useGroupPerm == o.useGroupPerm && applyChild == o.applyChild && lanOnly == o.lanOnly
&& logBlocked == o.logBlocked && logConn == o.logConn && blocked == o.blocked
2023-07-12 13:29:08 +00:00
&& killProcess == o.killProcess && groupIndex == o.groupIndex
&& appOriginPath == o.appOriginPath && appPath == o.appPath
&& endTime == o.endTime;
2023-04-04 09:22:41 +00:00
}