I am new to Boost and Json. It should be very simple, but I can't find the answer.
How do I read a value that is vector of strings in C++ using Boost.
Content of Json file for example :
{
"keyword1": ["string1", "string2"],
"keyword2": ["string3", "string4"]
}
Finally I would like to have vector for each keyword:
vector<string> keyword1;
vector<string> keyword2;