cellular/telephonysettings/xqbindings/psetwrapper/src/psetwrapper_s.cpp
changeset 13 e32024264ebb
parent 12 ae8abd0db65c
--- a/cellular/telephonysettings/xqbindings/psetwrapper/src/psetwrapper_s.cpp	Fri Mar 19 09:40:14 2010 +0200
+++ b/cellular/telephonysettings/xqbindings/psetwrapper/src/psetwrapper_s.cpp	Fri Apr 16 15:31:58 2010 +0300
@@ -21,6 +21,7 @@
 #include "psetcallwaitingwrapper.h"
 #include "psetcalldivertingwrapper.h"
 #include "psetnetworkwrapper.h"
+#include "psetcallbarringwrapper.h"
 #include "logging.h"
 
 
@@ -185,10 +186,11 @@
 
 // --------  Wrapper interface  --------- //
 
-void PSetCallDivertingWrapper::setCallDiverting(
+int PSetCallDivertingWrapper::setCallDiverting(
         PSCallDivertingCommand& aSetting, int aBasicServiceGroup)
 {
     DPRINT << "DUMMY WRAPPER";
+    return 0;
 }
 
 void PSetCallDivertingWrapper::getCallDivertingStatus(
@@ -215,6 +217,11 @@
     m_DefaultnumberListQSList.append(aNumber);
 }
 
+void PSetCallDivertingWrapper::getVoiceMailBoxNumber(QString &/*aVmbxNumber*/)
+{
+    DPRINT << "DUMMY WRAPPER";
+}
+
 PSetNetworkWrapper::PSetNetworkWrapper(
     CPsetContainer &psetContainer, QObject *parent)
     : QObject(parent)
@@ -260,4 +267,26 @@
     DPRINT << "DUMMY WRAPPER";
 }
 
+class PSetCallBarringWrapperPrivate {
+public:
+    PSetCallBarringWrapperPrivate() {}
+    ~PSetCallBarringWrapperPrivate() {}
+};
+
+PSetCallBarringWrapper::PSetCallBarringWrapper(
+    CPsetContainer &psetContainer,
+    QObject *parent)
+    :
+    QObject(parent)
+{
+    DPRINT << "DUMMY PSetCallBarringWrapper";
+}
+
+
+PSetCallBarringWrapper::~PSetCallBarringWrapper()
+{
+    DPRINT << "DUMMY PSetCallBarringWrapper";
+}
+
+
 // End of File.