plugins: add plugins choice to calls and conversations

Change-Id: Ic77d3936e69c1b8e25d93b7e62443f0262d2e0cf
diff --git a/src/CurrentCallVC.h b/src/CurrentCallVC.h
index f97018f..baa8aa7 100644
--- a/src/CurrentCallVC.h
+++ b/src/CurrentCallVC.h
@@ -24,12 +24,14 @@
 #import <api/account.h>
 
 #import "ChooseContactVC.h"
+#import "ChoosePluginHandlerVC.h"
 #import "CallInConferenceVC.h"
 #import "views/ConferenceOverlayView.h"
 
 namespace lrc {
     namespace api {
         class AVModel;
+        class PluginModel;
     }
 }
 
@@ -52,5 +54,6 @@
 -(void) setCurrentCall:(const QString&)callUid
           conversation:(const QString&)convUid
                account:(const lrc::api::account::Info*)account
-               avModel:(lrc::api::AVModel *)avModel;
+               avModel:(lrc::api::AVModel *)avModel
+           pluginModel:(lrc::api::PluginModel*)pluginModel;
 @end