mirror of
https://github.com/tnodir/fort
synced 2024-11-16 05:35:22 +00:00
13 lines
329 B
C++
13 lines
329 B
C++
#include "zone.h"
|
|
|
|
bool Zone::isNameEqual(const Zone &o) const
|
|
{
|
|
return zoneName == o.zoneName;
|
|
}
|
|
|
|
bool Zone::isOptionsEqual(const Zone &o) const
|
|
{
|
|
return enabled == o.enabled && customUrl == o.customUrl && sourceCode == o.sourceCode
|
|
&& url == o.url && formData == o.formData && textInline == o.textInline;
|
|
}
|