meetingrequest/mragnversit2/inc/cesmragnparserrulemonthly.h
author Simon Howkins <simonh@symbian.org>
Thu, 25 Nov 2010 12:13:04 +0000
branchRCL_3
changeset 83 31a5fbf5db1d
parent 0 8466d47a6819
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2005-2009 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:  Implements the import functionality of RRule
*
*
*/

#ifndef CESMRAGNPARSERRULEMONTHLY_H
#define CESMRAGNPARSERRULEMONTHLY_H

#include "cesmragnparserrule.h"

/**
 * An encalsulated CESMRAgnParseRRule for months
 */
class CESMRAgnParseRRuleMonthly : CESMRAgnParseRRule
    {
public:
    /**
     * C++ Constructor.
     */
    CESMRAgnParseRRuleMonthly();
    
    /**
     * C++ Destructor.
     */
    virtual ~CESMRAgnParseRRuleMonthly();

public:
    /**
     * Constructs a new CESMRAgnParseRRuleMonthly and returns it.
     * The object is left on the cleanup stack.
     * @param aAgnImpUtil AgnVersit2Importer utility functions
     * @return a new CESMRAgnParseRRuleMonthly.
     */
    static CESMRAgnParseRRule* NewLC( MESMRAgnImpUtil& aAgnImpUtil );

private://Constructor
    CESMRAgnParseRRuleMonthly( MESMRAgnImpUtil& aAgnImpUtil );

protected:
    /**
     * Parse the keywords and update RRule
     * @param aSegment recurrence rule value segment.
     * @param aRule recurrence rules
     * @return True if parsed the keyword successfully
     */
    virtual TBool DoParseL( CESMRICalRuleSegment& aSegment, TCalRRule& aRule );
    
    /**
     * Finalize the parsing
     * @param aRule recurrence rules
     * @param aStartTime The DTSTART of the parent component.
     * @return True if finalized parsing successfully
     */
    virtual TBool FinalizeParsingL( TCalRRule& aRule, const TCalTime& aStartTime );
    };

#endif  // CESMRAgnParseRRuleMonthly_h