summaryrefslogtreecommitdiffstats
path: root/src/libixion/queue_entry.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libixion/queue_entry.hpp')
-rw-r--r--src/libixion/queue_entry.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/libixion/queue_entry.hpp b/src/libixion/queue_entry.hpp
new file mode 100644
index 0000000..eb5e663
--- /dev/null
+++ b/src/libixion/queue_entry.hpp
@@ -0,0 +1,29 @@
+/* -*- 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/.
+ */
+
+#ifndef INCLUDED_QUEUE_ENTRY_HPP
+#define INCLUDED_QUEUE_ENTRY_HPP
+
+#include "ixion/address.hpp"
+
+namespace ixion {
+
+class formula_cell;
+
+struct queue_entry
+{
+ formula_cell* p;
+ abs_address_t pos;
+
+ queue_entry(formula_cell* _p, const abs_address_t& _pos);
+};
+
+}
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */