Ejemplo n.º 1
0
CDecoder* CDecoder::NewL(TRect& aRect)
    {
    CDecoder* self = new(ELeave) CDecoder(aRect);
    CleanupStack::PushL(self);
    self->ConstructL();
    CleanupStack::Pop(self);
    return self;
    }