On Sunday, February 19, 2012 01:23:13 %u wrote:
> I think I got it! This seems to work:
>
> class Derived {
> //Pulls in all the template forms in the base class
> template get(args ...) {
> alias Base.get!args get;
> }
>
> //Create new versions of get() here.
> }
That seems like it could work.
- Jonathan M Davis