geometryCacheConverter/geometryCacheBlockBase.h
         
    
#ifndef _GEOMETRY_CACHE_BLOCK_BASE
#define _GEOMETRY_CACHE_BLOCK_BASE
#include <maya/MIffTag.h>
#include <maya/MString.h>
#include <fstream>
class geometryCacheBlockBase
{
public:
    
    
                geometryCacheBlockBase();
                geometryCacheBlockBase( 
const MString& tag );
    virtual     ~geometryCacheBlockBase();
    
    
    const bool&     isGroup();
    
    
    virtual void    outputToAscii( ostream& os );
protected:
    
    
    bool        group;      
};
#endif