hello i want to write a project, in which i want to use same class function in the another class function is it possible? for example: class someClass { public: int functionOne(); void functionTwo(); } int functionOne() { // some code functionTwo(); // how to do this? // some code } void functionTwo() { // again some code }