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:
Diffstat (limited to 'source/blender/io/alembic/exporter/abc_writer_mesh.h')
-rw-r--r--source/blender/io/alembic/exporter/abc_writer_mesh.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/io/alembic/exporter/abc_writer_mesh.h b/source/blender/io/alembic/exporter/abc_writer_mesh.h
index 264696333a3..e4095758ba9 100644
--- a/source/blender/io/alembic/exporter/abc_writer_mesh.h
+++ b/source/blender/io/alembic/exporter/abc_writer_mesh.h
@@ -27,6 +27,10 @@
struct Mesh;
struct ModifierData;
+namespace blender {
+namespace io {
+namespace alembic {
+
/* Writer for Alembic meshes. Does not assume the object is a mesh object. */
class AbcGenericMeshWriter : public AbcObjectWriter {
protected:
@@ -88,4 +92,8 @@ class AbcMeshWriter : public AbcGenericMeshWriter {
virtual Mesh *getEvaluatedMesh(Scene *scene_eval, Object *ob_eval, bool &r_needsfree) override;
};
+} // namespace alembic
+} // namespace io
+} // namespace blender
+
#endif /* __ABC_WRITER_MESH_H__ */