hi, i'm new here and got a really simple problem.
i need to parse a conf file, where # is a comment, like this:
# Begin conf
VAR1 = VAL1
VAR2 = VAL2
# end
i want to skip all comments and read VAL1 and VAL2 to members of a class that are std::string. This wouldn't be a problem for me in C, but i want to do it in C++ . Unfortunately, i'm not quite familiar with input and parsing C++ style. hope you can help...