aboutsummaryrefslogtreecommitdiff
path: root/src/locations.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/locations.cpp')
-rw-r--r--src/locations.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/locations.cpp b/src/locations.cpp
index 8d1a086..c59f988 100644
--- a/src/locations.cpp
+++ b/src/locations.cpp
@@ -35,6 +35,14 @@ const std::string& Location::name() const
return m_name;
}
+bool Location::operator== (const Location& that) const
+{
+ return (m_name == that.m_name)
+ && (m_zone == that.m_zone)
+ && (m_offset == that.m_offset);
+}
+
+
Location::Location(const std::string& zone_, const std::string& name_):
m_zone(zone_),
m_name(name_)