I just started with Qt and discovered the QMetaObject wich is very nice/handy in my opinion.
Now I wondered if it is possible to get information like current function name, calling function name or current stack with Qt/standard C++ or any other C++ library.
I need this for debugging/logging purposes.
In C# for example you can call MethodBase.GetCurrentMethod()
to get the current method. Something like this would be really convenient.