David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
1e46859
Branches
Tags
c++11
main
start
testcode.git
product
ui
widget.cpp
Remove declaration tags. Better support vim code block navigation.
dblume
commited
1e46859
at 2022-04-08 11:46:34
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; } }