On Wed, Mar 16, 2011 at 2:18 PM, Simonson, Lucanus J <lucanus.j.simonson@intel.com> wrote:
>In the boost library system I coundn't find any .cpp files that would indecate a compilable library.
 
Any idea where the compilable files are in the boost library?
 
assuming A.hpp is included first,
 
Is there a way to make the classes able to not care about which class is included first?
 
You also need to declare the functions inline to prevent multiple definition link errors since the classes and their member functions are not templated.
 
If the entire class is in a header doesn't this removed the need for the inline call?
 
Ryan