Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rappidjsonの文字列値を変数クラスに割り当てたいと考えています。
void MyClass::setName(Ch* jsonString) { _name = (std::string)jsonString; }
問題を解決しました。
void MyClass::setName(Ch* jsonString) { _name = jsonString; }