| 78 | } |
| 79 | |
| 80 | void _FillStdStrArray(vector<string> & outArray, const Platform::Array<Platform::String^>^ inArray) |
| 81 | { |
| 82 | outArray.clear(); |
| 83 | outArray.resize(inArray->Length); |
| 84 | for (size_t i = 0; i < inArray->Length; i++) |
| 85 | { |
| 86 | String2stdstring(outArray[i], inArray[i]); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void mars::StnComponent::SetLonglinkSvrAddr(Platform::String ^ host, const Platform::Array<uint16>^ ports) |
| 91 | { |
no test coverage detected