Cleanup: Use enum class for DataType.

This commit is contained in:
2021-03-19 14:26:24 +01:00
parent b5f70d92c2
commit e5ffefe606
111 changed files with 400 additions and 399 deletions

View File

@@ -21,8 +21,8 @@
ChannelMatteOperation::ChannelMatteOperation()
{
addInputSocket(COM_DT_COLOR);
addOutputSocket(COM_DT_VALUE);
addInputSocket(DataType::Color);
addOutputSocket(DataType::Value);
this->m_inputImageProgram = nullptr;
}