using namespace HDK_Sample;
void
{
"hdk_blinddata",
"BlindData",
1,
1,
0));
}
};
{
}
{
mySopFlags.setManagesDataIDs(true);
}
SOP_BlindData::~SOP_BlindData() {}
{
}
const char *
{
return "Source Geometry";
}
static const char *theExtension = "mydata";
const char *path_prefix,
const UT_String &name_override)
{
ts << path_prefix <<
getName() <<
"." << theExtension << std::ends;
}
bool
{
if (!strcmp(extension, theExtension))
{
loadPrivateData(is);
}
}
int
{
return !result ? 0 : 1;
}
int
SOP_BlindData::savePrivateData(std::ostream &os,
int binary)
{
data = "This is my private data";
return !os ? 0 : 1;
}