Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/collada/ExtraTags.cpp
| Show All 26 Lines | |||||
| #include "ExtraTags.h" | #include "ExtraTags.h" | ||||
| ExtraTags::ExtraTags(std::string profile) | ExtraTags::ExtraTags(std::string profile) | ||||
| { | { | ||||
| this->profile = profile; | this->profile = profile; | ||||
| this->tags = std::map<std::string, std::string>(); | this->tags = std::map<std::string, std::string>(); | ||||
| } | } | ||||
| ExtraTags::~ExtraTags() | ExtraTags::~ExtraTags() = default; | ||||
| { | |||||
| } | |||||
| bool ExtraTags::isProfile(std::string profile) | bool ExtraTags::isProfile(std::string profile) | ||||
| { | { | ||||
| return this->profile == profile; | return this->profile == profile; | ||||
| } | } | ||||
| bool ExtraTags::addTag(std::string tag, std::string data) | bool ExtraTags::addTag(std::string tag, std::string data) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 81 Lines • Show Last 20 Lines | |||||