calendarui/views/inc/calenpreviewtimer.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:32:31 +0100
branchRCL_3
changeset 66 bd7edf625bdd
parent 0 f979ecb2b13e
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2002, 2003 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:   Expiration timer for timed calendar events.
 *                Always set to expire by the next timed calendar event (for today).
 *
*/



#ifndef CALENPREVIEWTIMER_H
#define CALENPREVIEWTIMER_H

#include "CalendarVariant.hrh"

// INCLUDES
#include <e32base.h>


// CLASS DECLARATION
NONSHARABLE_CLASS( CCalenPreviewTimer ) : public CTimer
    {
    public:
    /**
     * Two-phased constructor.
     * @param ?arg1 ?description
     **/
    static CCalenPreviewTimer* NewL(TCallBack& aCallBack);

    /**
     * ?member_description.
     **/
    void ConstructL(void);

    /**
     * Destructor.
     **/
    virtual ~CCalenPreviewTimer(void);

    private:
    /**
     * Hide default constructor.
     **/
    CCalenPreviewTimer(TCallBack& aCallBack);

    protected:  // From CActive
    /**
     * ?member_description.
     * @since Series 60 2.6
     **/
    void RunL(void);

    private:  // Data members
    // ?one_line_short_description_of_data
    TCallBack iCallBack;
    };

#endif  // CALENPREVIEWTIMER_H


// End of File