1234
struct X { int f() const; };
#include "X.hpp" int X::f() const { return 25; }
1234567
#include "X.hpp" int a_function( ) { X x; return x.f(); // <===== call ======> }