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-03-19 16:49:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-19 17:45:50 +0300
commitc78ebf9f26d01fcc3cf16baa9da922ee183f4b09 (patch)
tree4c1beea139b23f93eaa2ac0fa25657baca346677 /source/blender/blenkernel/BKE_editlattice.h
parent342a18287f5e0d3cf3147669709dcce21b967946 (diff)
Cleanup: split lattice into own library
Was mixed with object functionality.
Diffstat (limited to 'source/blender/blenkernel/BKE_editlattice.h')
-rw-r--r--source/blender/blenkernel/BKE_editlattice.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_editlattice.h b/source/blender/blenkernel/BKE_editlattice.h
new file mode 100644
index 00000000000..476cf535e97
--- /dev/null
+++ b/source/blender/blenkernel/BKE_editlattice.h
@@ -0,0 +1,34 @@
+/*
+ * ***** 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 BKE_editlattice.h
+ * \ingroup bke
+ */
+
+#ifndef __BKE_EDITLATTICE_H__
+#define __BKE_EDITLATTICE_H__
+
+struct Object;
+
+void BKE_editlattice_free(struct Object *ob);
+void BKE_editlattice_make(struct Object *obedit);
+void BKE_editlattice_load(struct Object *obedit);
+
+#endif /* __BKE_EDITLATTICE_H__ */