Consider the following code
// a.cpp class Helper{ public: Helper(){ } int help(int a){ return a + 1; } }; int main(){ return 0;