Search

August 26, 2004
General »
...mix-in styled interface implementation, though:

    interface IFace {
        // contracts allowed, but no body
        void hello...
June 29, 2004
General »
...c iface.d
iface.d(8): template Foo(T) is used as a type
iface...
May 18, 2004
Issues »
...printf("foo here\n"); }
    }

    interface Iface {
        void foo();
    }

    class Bar : Iface {
        mixin Impl;
    }

    int main...
February 25, 2004
D »
...for this:

interface IFace {
    void a();
    void b();
}

abstract class AClass : IFace {
    void a() {}
    abstract...
February 11, 2004
D »
...clz_guid, alias if_guid, IFACE ) {
IFACE newInstance() {
HRESULT hr;
IFACE   obj;
hr = CoCreateInstance( &clz...
January 20, 2004
c++ »
...which the program terminates:


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//

class timer : public iface
{
virtual  void timerProc_() const = 0;
protected:
timer...
1 2 3 4 5 6
Next ›   Last »