Revert change
parent
9d0006fecb
commit
cff213d4dd
|
@ -118,8 +118,12 @@ C4DImporter::~C4DImporter() {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
bool C4DImporter::CanRead( const std::string& /*pFile*/, IOSystem* /*pIOHandler*/, bool /*checkSig*/) const {
|
bool C4DImporter::CanRead( const std::string& /*pFile*/, IOSystem* /*pIOHandler*/, bool /*checkSig*/) const {
|
||||||
// TODO
|
const std::string& extension = GetExtension(pFile);
|
||||||
return false;
|
if (extension == "c4d") {
|
||||||
|
return true;
|
||||||
|
} else if ((!extension.length() || checkSig) && pIOHandler) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue