David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
62bd371
Branches
Tags
c++11
main
start
testcode.git
product
ui
widget.cpp
Use __PRETTY_FUNCTION__ and __func__.
David Blume
commited
62bd371
at 2015-11-08 01:17:45
widget.cpp
Blame
History
Raw
#include <iostream> #include <string> #include <vector> #include "widget.hpp" using namespace std; namespace UI { int widget_cb() { cout << "The function " << __PRETTY_FUNCTION__ << " was called." << endl; return 0; } }