I want something like this:
std::tuple<int, bool, double> MyFunction_1 (void);
void MyFunction_2 (decltype (MyFunction_1) ¶ms);
Obviously in this example code pointer to function would be passed
What I want is to have equivalent of this:
void MyFunction_2 (std::tuple<int, bool, double> ¶ms);
Is it possible to do so?
Aucun commentaire:
Enregistrer un commentaire