summaryrefslogtreecommitdiffstats
path: root/src/libixion/table.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libixion/table.cpp')
-rw-r--r--src/libixion/table.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/libixion/table.cpp b/src/libixion/table.cpp
new file mode 100644
index 0000000..d182715
--- /dev/null
+++ b/src/libixion/table.cpp
@@ -0,0 +1,40 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include <ixion/table.hpp>
+
+#include <iomanip>
+
+namespace ixion {
+
+table_t::table_t() :
+ name(empty_string_id),
+ column_first(empty_string_id),
+ column_last(empty_string_id),
+ areas(table_area_none) {}
+
+bool table_t::operator== (const table_t& r) const
+{
+ return name == r.name && column_first == r.column_first && column_last == r.column_first && areas == r.areas;
+}
+
+bool table_t::operator!= (const table_t& r) const
+{
+ return !operator==(r);
+}
+
+std::ostream& operator<<(std::ostream& os, const table_t& table)
+{
+ os << "(name:" << table.name << "; column-first:" << table.column_first
+ << "; column-last:" << table.column_last << "; areas:0x" << std::hex
+ << std::setw(2) << std::setfill('0') << table.areas << ")";
+ return os;
+}
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */