Abejorro:
On my way to an interface-based-design I was stopped again:
What is the way to stay abstract beside ordinary return declaration ?
The Implementing-Class is senseless at that point.
You are returning an object, in such case the object to be returned must have a copy constructor and cannot be abstract.
Ex Ovo Omnia: You are returning an object, in such case the object to be returned must have a copy constructor and cannot be abstract.
| The alternative is to return a pointer to a base class (possibly an interface.) |

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
On my way to an interface-based-design I was stopped again:
What is the way to stay abstract beside ordinary return declaration ?
The Implementing-Class is senseless at that point.