Possible Duplicate:
Iterate through struct variables.

So I have a header file and a code file. The class is representation of a View that will be queried from stored proc. For each col. in view there is one data member in class. Currently in code we have something like this:

Load( Reader reader)
{
   m_col1 = reader("m_col1");
   m_col2 = reader("m_col2");
   ..
}

How can I write a code that will iterate through member variables and give me code like:

Load( Reader reader)
{
   For (each str in ArrayOfMemberVariables)
     variableLValue(str) = reader(str); //  str = m_col1,  m_col2  ...
}
link|improve this question

58% accept rate
4  
Duplicate of Iterate through struct variables. (short answer: you don't) – James McNellis Sep 30 '10 at 14:31
feedback

closed as exact duplicate by James McNellis, GManNickG, Steve Townsend, Jerry Coffin, Prasoon Saurav Sep 30 '10 at 15:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

The C++ reflection question has been brought up several times. Unfortunately, it's not possible unless you manage the metadata yourself. See this question for more details.

link|improve this answer
feedback

If you mean declaring variables names dynamicly like in PHP for example (using other variable names), you can't do that in C++.

In C++ you don't have the notion of reflection like in Java where you can introspect the variables of your class and code around that to do things like serialization with knowing in advance the class members.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.