| 113 | } |
| 114 | |
| 115 | void FBX::Node::AddP70string( |
| 116 | const std::string &cur_name, const std::string &value) { |
| 117 | FBX::Node n("P"); |
| 118 | n.AddProperties(cur_name, "KString", "", "", value); |
| 119 | AddChild(n); |
| 120 | } |
| 121 | |
| 122 | void FBX::Node::AddP70enum( |
| 123 | const std::string &cur_name, int32_t value) { |
no test coverage detected