Answers for "json::iterator c++"

C++
0

json::iterator c++

for (auto it = RecentFiles.begin(); it != RecentFiles.end(); ++it)
{
    std::cout << it.key() << "\n";
    std::cout << (*it)["Name"].get<std::string>() << "\n";
    std::cout << (*it)["Last modified"].get<std::string>() << "\n";
}
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language