Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/collada/ExtraHandler.cpp
| Show All 24 Lines | |||||
| ExtraHandler::ExtraHandler(DocumentImporter *dimp, AnimationImporter *aimp) | ExtraHandler::ExtraHandler(DocumentImporter *dimp, AnimationImporter *aimp) | ||||
| : currentExtraTags(nullptr) | : currentExtraTags(nullptr) | ||||
| { | { | ||||
| this->dimp = dimp; | this->dimp = dimp; | ||||
| this->aimp = aimp; | this->aimp = aimp; | ||||
| } | } | ||||
| ExtraHandler::~ExtraHandler() | |||||
| { | |||||
| } | |||||
| bool ExtraHandler::elementBegin(const char *elementName, const char **attributes) | bool ExtraHandler::elementBegin(const char *elementName, const char **attributes) | ||||
| { | { | ||||
| /* \todo attribute handling for profile tags */ | /* \todo attribute handling for profile tags */ | ||||
| currentElement = std::string(elementName); | currentElement = std::string(elementName); | ||||
| // addToSidTree(attributes[0], attributes[1]); | // addToSidTree(attributes[0], attributes[1]); | ||||
| return true; | return true; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 50 Lines • Show Last 20 Lines | |||||