contacts_plat/contacts_ui_api/inc/cntabstractview.h
changeset 65 ae724a111993
parent 27 de1630741fbe
child 81 640d30f4fb64
--- a/contacts_plat/contacts_ui_api/inc/cntabstractview.h	Wed Aug 18 09:39:00 2010 +0300
+++ b/contacts_plat/contacts_ui_api/inc/cntabstractview.h	Thu Sep 02 20:16:15 2010 +0300
@@ -19,6 +19,7 @@
 
 #include <cntabstractviewmanager.h>
 #include <cntviewparams.h>
+#include <cntabstractengine.h>
 
 class HbView;
 
@@ -33,7 +34,7 @@
      * View is activated after its added to main window and is
      * ready to be drawn.
      */
-    virtual void activate( CntAbstractViewManager* aMgr, const CntViewParameters aArgs ) = 0;
+    virtual void activate( const CntViewParameters aArgs ) = 0;
     
     /**
      * View is deactivated just before its removed from
@@ -57,5 +58,10 @@
      * return the view id
      */
     virtual int viewId() const = 0;
+	
+	/*!
+	 * set engine. This must be called right after C'tor.
+	 */
+	virtual void setEngine( CntAbstractEngine& aEngine ) = 0;
 };
 #endif /* CNTABSTRACTVIEW_H_ */