On Monday, 20 February 2017 at 13:50:26 UTC, ketmar wrote:
just add ddoc documentation to 'em, and then it doesn't matter in which order they are declared: people will generate documentation to find out how to use your code. ;-)
ah okay, thx But what about this?
class A { private: int a; int b; public: int c; int d; }orclass A { private { int a; int b; } public { int c; int d; } }