Split class declaration and definition

Kozzi11 via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Thu Jul 31 04:34:37 PDT 2014


Is possible to somehow split class declaration and definition.

I mean something like this:

class C
{
     void hello(); // just prototype
}

class C
{
     void hello()
     {
         //actual code
     }
}

or something like this
void C.hello() {
     //actual code
}


More information about the Digitalmars-d-learn mailing list