fort/src/ui/conf/app.cpp

9 lines
337 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
&& groupIndex == o.groupIndex && appPath == o.appPath && endTime == o.endTime;
}