summaryrefslogtreecommitdiffstats
path: root/src/libixion/queue_entry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libixion/queue_entry.cpp')
-rw-r--r--src/libixion/queue_entry.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libixion/queue_entry.cpp b/src/libixion/queue_entry.cpp
new file mode 100644
index 0000000..3051f8f
--- /dev/null
+++ b/src/libixion/queue_entry.cpp
@@ -0,0 +1,17 @@
+/* -*- 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 "queue_entry.hpp"
+
+namespace ixion {
+
+queue_entry::queue_entry(formula_cell* _p, const abs_address_t& _pos) :
+ p(_p), pos(_pos) {}
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */