geometryCacheConverter/geometryCacheBlockIntData.h
#ifndef _GEOMETRY_CACHE_BLOCK_INT_DATA
#define _GEOMETRY_CACHE_BLOCK_INT_DATA
#include "geometryCacheBlockBase.h"
class geometryCacheBlockIntData : public geometryCacheBlockBase
{
public:
geometryCacheBlockIntData(
const MString& tag,
const int& value );
~geometryCacheBlockIntData() override;
const int& data();
void outputToAscii( ostream& os ) override;
private:
int intData;
};
#endif