How to add num_of_worker and data shuffle option in data loader in C++

The python code is
Dataloader(dataset,bathsize,shuffle=true, drop_last=true, num_of_worker=3)

May I ask about how to convert it into C++ please ?
I checked make data loader does not have num of worker and datashuffle options ?

Thanks.