1 2 3 4 5 6 7 8 9 10
#include "bar.hpp" #include "bardep.hpp" #include <iostream> #include <ostream> int bar(int x) { std::cout << "bar(" << x << ")" << std::endl; return bardep(x) * 7; }