calendarui/views/dayview/tsrc/unittests/unittest_calendayview/calenservices.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 06 Jul 2010 14:14:56 +0300
changeset 50 579cc610882e
child 75 7ac58b2aae6f
permissions -rw-r--r--
Revision: 201025 Kit: 2010127

/*
 * calenservices.h
 *
 *  Created on: Jun 21, 2010
 *      Author: zabinpio
 */

#ifndef CALENSERVICES_H_
#define CALENSERVICES_H_

#include "calencontext.h"

/*!
 Mocked class MCalenServices
 */
class AgendaUtil;

class MCalenServices
{
public:
    MCalenServices() {
        
    }
    
    MCalenContext& Context(){
			return mContext;
    	}
    
    int getFirstView(){ return 0;}
    TBool IssueCommandL( TInt aCommand  ){ Q_UNUSED(aCommand); return EFalse;}
    AgendaUtil* agendaInterface() {return 0;}
    
    ~MCalenServices() {
        
    }
    
    MCalenContext mContext;
};
#endif /* CALENSERVICES_H_ */