One define the the function inside the class declaration. It means instead for define outside the class as
void Class_name::Function_name(){}
declare as follow
class {
public:
void Function_name(){}
};
This will make functions inline.( depending on compilers decision whether to treat it as inline or not).
void Class_name::Function_name(){}
declare as follow
class {
public:
void Function_name(){}
};
This will make functions inline.( depending on compilers decision whether to treat it as inline or not).
Comments