summaryrefslogtreecommitdiffstats
path: root/src/object/algorithms/unclump.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/algorithms/unclump.h')
-rw-r--r--src/object/algorithms/unclump.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/object/algorithms/unclump.h b/src/object/algorithms/unclump.h
new file mode 100644
index 0000000..313e12d
--- /dev/null
+++ b/src/object/algorithms/unclump.h
@@ -0,0 +1,32 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/** @file
+ * @brief Unclumping objects
+ */
+/* Authors:
+ * bulia byak
+ *
+ * Copyright (C) 2005 Authors
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#ifndef SEEN_DIALOGS_UNCLUMP_H
+#define SEEN_DIALOGS_UNCLUMP_H
+
+#include <vector>
+
+class SPItem;
+
+void unclump(std::vector<SPItem *> &items);
+
+#endif /* !UNCLUMP_H_SEEN */
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :