Hi.
I have just started to develop a class library with VS2005 and C++. This
will eventually be a library of many mathematical functions. I want to have
one class in my library, e.g. AstroCalc, with many member functions. I want
to divide my functions over many source files for clarity´s sake. In VS2005
C#, I would use the partial class construct.
How do I do it in VS2005 C++?
Or, maybe, is there something fundamentally wrong with my approach here?
Regards,
Gudni
Mark Salsbery [MVP] - 05 Jan 2008 18:53 GMT
There's nothing wrong with one header (.h) file with the class declaration
and multiple source (.cpp) files with the implementation of the class.
Mark

Signature
Mark Salsbery
Microsoft MVP - Visual C++
> Hi.
> I have just started to develop a class library with VS2005 and C++. This
[quoted text clipped - 12 lines]
> Regards,
> Gudni