notes/notesui/notesappcontroller/inc/notesappcontrollerifimpl.h
changeset 18 c198609911f9
equal deleted inserted replaced
0:f979ecb2b13e 18:c198609911f9
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * This file contains the NotesAppControllerIfImpl class declaration.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef NOTESAPPCONTROLLERIFIMPL_H
       
    20 #define NOTESAPPCONTROLLERIFIMPL_H
       
    21 
       
    22 // System includes
       
    23 #include <QObject>
       
    24 
       
    25 // User includes
       
    26 #include "notesappcontrollerif.h"
       
    27 #include "notescommon.h"
       
    28 
       
    29 // Forward declarations
       
    30 class AgendaUtil;
       
    31 class NotesModel;
       
    32 class NotesAppController;
       
    33 
       
    34 class NotesAppControllerIfImpl : public NotesAppControllerIf, public QObject
       
    35 {
       
    36 public:
       
    37 	NotesAppControllerIfImpl(
       
    38 			NotesAppController *controller, QObject *parent = 0);
       
    39 	virtual ~NotesAppControllerIfImpl();
       
    40 
       
    41 public:
       
    42 	virtual AgendaUtil *agendaUtil();
       
    43 	virtual NotesModel *notesModel();
       
    44 	virtual void switchToView(NotesNamespace::NotesViewIds viewId);
       
    45 
       
    46 private:
       
    47 	NotesAppController *mAppController;
       
    48 };
       
    49 
       
    50 #endif // NOTESAPPCONTROLLERIFIMPL_H
       
    51 
       
    52 // End of file	--Don't remove this.