[Bf-blender-cvs] [17bbbf1] alembic_pointcache: Removed the types.h file, not used and doesn't have a clear purpose.

Lukas Tönne noreply at git.blender.org
Thu Oct 16 16:53:45 CEST 2014


Commit: 17bbbf18430d32822a64ff0928ac2d7478dde7e1
Author: Lukas Tönne
Date:   Fri Nov 29 18:25:50 2013 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB17bbbf18430d32822a64ff0928ac2d7478dde7e1

Removed the types.h file, not used and doesn't have a clear purpose.

===================================================================

M	source/blender/pointcache/CMakeLists.txt
M	source/blender/pointcache/intern/particles.h
M	source/blender/pointcache/intern/schema.h
D	source/blender/pointcache/intern/types.h

===================================================================

diff --git a/source/blender/pointcache/CMakeLists.txt b/source/blender/pointcache/CMakeLists.txt
index b0681c6..14e6ebf 100644
--- a/source/blender/pointcache/CMakeLists.txt
+++ b/source/blender/pointcache/CMakeLists.txt
@@ -61,7 +61,6 @@ if(WITH_ALEMBIC)
 	intern/reader.cpp
 	intern/schema.h
 	intern/thread.h
-	intern/types.h
 	intern/writer.h
 	intern/writer.cpp
 	)
diff --git a/source/blender/pointcache/intern/particles.h b/source/blender/pointcache/intern/particles.h
index 6328cad..f39187c 100644
--- a/source/blender/pointcache/intern/particles.h
+++ b/source/blender/pointcache/intern/particles.h
@@ -24,7 +24,6 @@
 
 #include "reader.h"
 #include "schema.h"
-#include "types.h"
 #include "writer.h"
 
 struct Object;
diff --git a/source/blender/pointcache/intern/schema.h b/source/blender/pointcache/intern/schema.h
index 5a1141b..a65e927 100644
--- a/source/blender/pointcache/intern/schema.h
+++ b/source/blender/pointcache/intern/schema.h
@@ -23,8 +23,6 @@
 #include <Alembic/AbcGeom/IGeomBase.h>
 #include <Alembic/AbcGeom/OGeomBase.h>
 
-#include "types.h"
-
 namespace PTC {
 
 #if 0
diff --git a/source/blender/pointcache/intern/types.h b/source/blender/pointcache/intern/types.h
deleted file mode 100644
index f038573..0000000
--- a/source/blender/pointcache/intern/types.h
+++ /dev/null
@@ -1,140 +0,0 @@
-/*
- * Copyright 2013, Blender Foundation.
- *
- * 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.
- */
-
-#ifndef PTC_TYPES_H
-#define PTC_TYPES_H
-
-#include <Alembic/AbcGeom/Foundation.h>
-#include <Alembic/AbcGeom/IGeomParam.h>
-#include <Alembic/AbcGeom/OGeomParam.h>
-
-//using namespace Alembic::Abc;
-//using namespace Alembic::AbcGeom;
-
-//namespace Util = Alembic::Util;
-
-#if 0
-using Abc::V2s;
-using Abc::V2i;
-using Abc::V2f;
-using Abc::V2d;
-
-using Abc::V3s;
-using Abc::V3i;
-using Abc::V3f;
-using Abc::V3d;
-
-using Abc::Box2s;
-using Abc::Box2i;
-using Abc::Box2f;
-using Abc::Box2d;
-
-using Abc::Box3s;
-using Abc::Box3i;
-using Abc::Box3f;
-using Abc::Box3d;
-
-using Abc::M33f;
-using Abc::M33d;
-using Abc::M44f;
-using Abc::M44d;
-
-using Abc::Quatf;
-using Abc::Quatd;
-
-using Abc::C3h;
-using Abc::C3f;
-using Abc::C3c;
-
-using Abc::C4h;
-using Abc::C4f;
-using Abc::C4c;
-
-using Abc::N3f;
-using Abc::N3d;
-
-
-IBoolGeomParam;
-IUcharGeomParam;
-ICharGeomParam;
-IUInt16GeomParam;
-IInt16GeomParam;
-IUInt32GeomParam;
-IInt32GeomParam;
-IUInt64GeomParam;
-IInt64GeomParam;
-IHalfGeomParam;
-IFloatGeomParam;
-IDoubleGeomParam;
-IStringGeomParam;
-IWstringGeomParam;
-
-IV2sGeomParam;
-IV2iGeomParam;
-IV2fGeomParam;
-IV2dGeomParam;
-
-IV3sGeomParam;
-IV3iGeomParam;
-IV3fGeomParam;
-IV3dGeomParam;
-
-IP2sGeomParam;
-IP2iGeomParam;
-IP2fGeomParam;
-IP2dGeomParam;
-
-IP3sGeomParam;
-IP3iGeomParam;
-IP3fGeomParam;
-IP3dGeomParam;
-
-IBox2sGeomParam;
-IBox2iGeomParam;
-IBox2fGeomParam;
-IBox2dGeomParam;
-
-IBox3sGeomParam;
-IBox3iGeomParam;
-IBox3fGeomParam;
-IBox3dGeomParam;
-
-IM33fGeomParam;
-IM33dGeomParam;
-IM44fGeomParam;
-IM44dGeomParam;
-
-IQuatfGeomParam;
-IQuatdGeomParam;
-
-IC3hGeomParam;
-IC3fGeomParam;
-IC3cGeomParam;
-
-IC4hGeomParam;
-IC4fGeomParam;
-IC4cGeomParam;
-
-IN2fGeomParam;
-IN2dGeomParam;
-
-IN3fGeomParam;
-IN3dGeomParam;
-#endif
-
-#endif  /* PTC_TYPES_H */




More information about the Bf-blender-cvs mailing list