summaryrefslogtreecommitdiffstats
path: root/src/libixion/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libixion/interface.cpp')
-rw-r--r--src/libixion/interface.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libixion/interface.cpp b/src/libixion/interface.cpp
new file mode 100644
index 0000000..5bf19a1
--- /dev/null
+++ b/src/libixion/interface.cpp
@@ -0,0 +1,19 @@
+/* -*- 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/interface/table_handler.hpp"
+#include "ixion/interface/session_handler.hpp"
+
+namespace ixion { namespace iface {
+
+table_handler::~table_handler() {}
+
+session_handler::~session_handler() {}
+
+}}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */