David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
56e9725
Branches
Tags
c++11
main
start
testcode.git
product
ui
widget.cpp
Add .clang-format
dblume
commited
56e9725
at 2023-08-12 23:24:26
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; } } // namespace UI