if i want to inline a member function do i need to have it in both places below(decleration and implementation section)? or can i just place it in implementation section only or decleration section only and get the same result?
class Ray {
public:
inline allocate( const int Lize );
{;
//implementation section
inline void Ray::allocate( const int Lize )
{
}