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/util/util_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/util/util_intern.h')
-rw-r--r--source/blender/editors/util/util_intern.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/source/blender/editors/util/util_intern.h b/source/blender/editors/util/util_intern.h
deleted file mode 100644
index 6eda3900e91..00000000000
--- a/source/blender/editors/util/util_intern.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * ***** 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.
- *
- * The Original Code is Copyright (C) 2008 Blender Foundation.
- * All rights reserved.
- *
- *
- * Contributor(s): Blender Foundation
- *
- * ***** END GPL LICENSE BLOCK *****
- */
-
-/** \file blender/editors/util/util_intern.h
- * \ingroup edutil
- */
-
-
-#ifndef __UTIL_INTERN_H__
-#define __UTIL_INTERN_H__
-
-/* internal exports only */
-
-struct UndoType;
-struct Main;
-struct Scene;
-
-/* memfile_undo.c */
-void ED_memfile_undosys_type(struct UndoType *ut);
-
-#endif /* __UTIL_INTERN_H__ */