Commit: 7d6779f88ee8a4677d63dc8f7989e7347c4e6d34
Author: Lukas Tönne
Date:   Fri Feb 13 14:47:17 2015 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB7d6779f88ee8a4677d63dc8f7989e7347c4e6d34

Removed unused code.

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

M       source/blender/pointcache/intern/alembic.h

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

diff --git a/source/blender/pointcache/intern/alembic.h 
b/source/blender/pointcache/intern/alembic.h
index 439accf..5eca82e 100644
--- a/source/blender/pointcache/intern/alembic.h
+++ b/source/blender/pointcache/intern/alembic.h
@@ -62,161 +62,6 @@ Reader *abc_reader_dynamicpaint(Scene *scene, Object *ob, 
DynamicPaintSurface *s
 Writer *abc_writer_point_cache(Scene *scene, Object *ob, 
PointCacheModifierData *pcmd);
 Reader *abc_reader_point_cache(Scene *scene, Object *ob, 
PointCacheModifierData *pcmd);
 
-#if 0
-class ClothWriter : public Writer {
-public:
-       ClothWriter(Scene *scene, Object *ob, ClothModifierData *clmd);
-       ~ClothWriter();
-       
-private:
-       Object *m_ob;
-       ClothModifierData *m_clmd;
-};
-
-class ClothReader : public Reader {
-public:
-       ClothReader(Scene *scene, Object *ob, ClothModifierData *clmd);
-       ~ClothReader();
-       
-private:
-       Object *m_ob;
-       ClothModifierData *m_clmd;
-};
-
-
-class DynamicPaintWriter : public Writer {
-public:
-       DynamicPaintWriter(Scene *scene, Object *ob, DynamicPaintSurface 
*surface);
-       ~DynamicPaintWriter();
-       
-private:
-       Object *m_ob;
-       DynamicPaintSurface *m_surface;
-};
-
-class DynamicPaintReader : public Reader {
-public:
-       DynamicPaintReader(Scene *scene, Object *ob, DynamicPaintSurface 
*surface);
-       ~DynamicPaintReader();
-       
-private:
-       Object *m_ob;
-       DynamicPaintSurface *m_surface;
-};
-
-
-class PointCacheWriter : public Writer {
-public:
-       PointCacheWriter(Scene *scene, Object *ob, PointCacheModifierData 
*pcmd);
-       ~PointCacheWriter();
-       
-private:
-       Object *m_ob;
-       PointCacheModifierData *m_pcmd;
-};
-
-class PointCacheReader : public Reader {
-public:
-       PointCacheReader(Scene *scene, Object *ob, PointCacheModifierData 
*pcmd);
-       ~PointCacheReader();
-       
-       DerivedMesh *acquire_result();
-       void discard_result();
-       
-private:
-       Object *m_ob;
-       PointCacheModifierData *m_pcmd;
-       
-       DerivedMesh *m_result;
-};
-
-
-class ParticlesWriter : public Writer {
-public:
-       ParticlesWriter(Scene *scene, Object *ob, ParticleSystem *psys);
-       ~ParticlesWriter();
-       
-private:
-       Object *m_ob;
-       ParticleSystem *m_psys;
-};
-
-class ParticlesReader : public Reader {
-public:
-       ParticlesReader(Scene *scene, Object *ob, ParticleSystem *psys);
-       ~ParticlesReader();
-       
-       int totpoint() const { return m_totpoint; }
-       
-private:
-       Object *m_ob;
-       ParticleSystem *m_psys;
-       
-       int m_totpoint;
-};
-
-
-class RigidBodyWriter : public Writer {
-public:
-       RigidBodyWriter(Scene *scene, RigidBodyWorld *rbw);
-       ~RigidBodyWriter();
-       
-private:
-       RigidBodyWorld *m_rbw;
-};
-
-class RigidBodyReader : public Reader {
-public:
-       RigidBodyReader(Scene *scene, RigidBodyWorld *rbw);
-       ~RigidBodyReader();
-       
-private:
-       RigidBodyWorld *m_rbw;
-};
-
-
-class SmokeWriter : public Writer {
-public:
-       SmokeWriter(Scene *scene, Object *ob, SmokeDomainSettings *domain);
-       ~SmokeWriter();
-       
-private:
-       Object *m_ob;
-       SmokeDomainSettings *m_domain;
-};
-
-class SmokeReader : public Reader {
-public:
-       SmokeReader(Scene *scene, Object *ob, SmokeDomainSettings *domain);
-       ~SmokeReader();
-       
-private:
-       Object *m_ob;
-       SmokeDomainSettings *m_domain;
-};
-
-
-class SoftBodyWriter : public Writer {
-public:
-       SoftBodyWriter(Scene *scene, Object *ob, SoftBody *softbody);
-       ~SoftBodyWriter();
-       
-private:
-       Object *m_ob;
-       SoftBody *m_softbody;
-};
-
-class SoftBodyReader : public Reader {
-public:
-       SoftBodyReader(Scene *scene, Object *ob, SoftBody *softbody);
-       ~SoftBodyReader();
-       
-private:
-       Object *m_ob;
-       SoftBody *m_softbody;
-};
-#endif
-
 } /* namespace PTC */
 
 #endif  /* PTC_EXPORT_H */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to