I want recursively fill members of one structure, it looks like this:
struct OPTIONS{
string sDirectoryName;
vector<string> vExtensions;
int uOperationId;
} structCurrentDir;
after filling all members I need to push this structure to another vector: vDirectories.push_back(structCurrentDir);
But then I need reset all members and I have problem. structCurrentDir = {"", NULL, 0};
not working (syntax error).
Any ideas how should it be done?