The inline functions is a C + + enhancement feature to increase the execution time of a program. Compiler replace the definition at compile time instead of referring function defination at runtime.
Note-this is a suggestion to compiler to make the function inline. If function is big (under term of instruction etc), compiler can ignore the "inline" request and treat it as normal function.
To make a function as inline, start the defination with the keyword "inline"
class a{ public : inline int Add (int A, int b) { return (a + b); }}; Class b{ public : int Add (int A, int b);}; inline int b::add (int A, int b) { return (a + b):}
It is just a suggestion, not compulsion. Compiler may or may not be inline functions you marked as inline. It may also decide to-inline functions not marked as inline at compilation or linking time.
All the member functions declared and defined within class is inline by default. So no need to define explictly.
Reference:
What is C + + inline functions, cplusplus.com
[C + +] Inline Function