I may just have trouble understanding the exact definition, but is an "Inline" function anything special?
Or is it just calling a function within another function?
As Cubbi said, an inline function may be safely defined in multiple source files ("translation units") so long as the definitions are all the same.
What giblit mentions is actually a misunderstanding - whether or not a function is inline doesn't matter, the compiler always makes the final decision whether to inline a function call or not.
The C++ standard does say that the inline keyword is to indicate that you'd prefer that a function is inlined (if possible.)
In this sense it doesn't appear to of much use these days as modern compilers seem happy enough to inline things whenever they feel it's appropriate without being asked (and, of course, ignore the request if they don't like it.)
I assume that old-fashioned compilers did have to be asked to inline functions, and that the relaxation of the one-definition rule was made to allow this to work.