I want to implement a function that can print out the value of one member variable (for example, 'aa') of struct ('Data') by it's name. I try to use the macro definition as follows, but failed. Is there a simple way to implement it?
#include <string>
#include <iostream>
using namespace std;
struct Data
{
    int aa;
    int bb;
    int cc;
    Data(): aa(1),bb(2),cc(3) {};
};
#define Param(a,b) a.##b
void Process(Data& data, const string& name)
{
    cout << Param(data, name) << endl;
}
void main()
{
    Data data;
    Process(data, "aa");//I want print the value of Data.aa
    Process(data, "bb");//I want print the value of Data.bb
    Process(data, "cc");//I want print the value of Data.cc
}
 
     
    