On Tue, May 07, 2019 at 07:21:52PM +0200, Robert M. Münch via Digitalmars-d-learn wrote: [...] > > interface myFrameworkApp { > > void init(); > > } [...]
Note: it's a very bad idea to call a member function 'init'. It conflicts with the built-in .init property of all types, and can lead to strange bugs / confusing behaviours. Call it something else, like 'initialize'. T -- If lightning were to ever strike an orchestra, it'd always hit the conductor first.