S
Stephan Winter
hi,
i have a simple question for inline code :
class x {
private:
int xx;
public:
int getXX(void){ return x; }
};
is the same like :
class x {
private:
int xx;
public:
int getXX( void );
};
inline int x::getXX( void )
{
return x;
}
or is a differenz between these code ?
thanks
Stephan
i have a simple question for inline code :
class x {
private:
int xx;
public:
int getXX(void){ return x; }
};
is the same like :
class x {
private:
int xx;
public:
int getXX( void );
};
inline int x::getXX( void )
{
return x;
}
or is a differenz between these code ?
thanks
Stephan