Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-04-02 16:02:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-02 16:07:40 +0300
commit4ffa05c30b10eb8a07dd0a9b43466f6d11bc1364 (patch)
tree0a9bfbbcd5d49bcaeb0ae0c9f42ccfdbfd107356 /source/blender/editors/undo/undo_intern.h
parentb186592b211ef91c20cc771ed743ee21a09223be (diff)
Cleanup: move undo into it's own directory
Split out undo API from ED_util.h into ED_undo.h
Diffstat (limited to 'source/blender/editors/undo/undo_intern.h')
-rw-r--r--source/blender/editors/undo/undo_intern.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/source/blender/editors/undo/undo_intern.h b/source/blender/editors/undo/undo_intern.h
new file mode 100644
index 00000000000..671f9637d65
--- /dev/null
+++ b/source/blender/editors/undo/undo_intern.h
@@ -0,0 +1,35 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/editors/undo/undo_intern.h
+ * \ingroup edundo
+ */
+
+#ifndef __UNDO_INTERN_H__
+#define __UNDO_INTERN_H__
+
+/* internal exports only */
+
+struct UndoType;
+
+/* memfile_undo.c */
+void ED_memfile_undosys_type(struct UndoType *ut);
+
+#endif /* __UNDO_INTERN_H__ */