phoneengine/parserrecognizer/tsrc/ut_parserrecognizer/xqservicerequest.h
changeset 30 ebdbd102c78a
parent 21 92ab7f8d0eab
--- a/phoneengine/parserrecognizer/tsrc/ut_parserrecognizer/xqservicerequest.h	Mon May 03 12:31:11 2010 +0300
+++ b/phoneengine/parserrecognizer/tsrc/ut_parserrecognizer/xqservicerequest.h	Fri May 14 15:51:57 2010 +0300
@@ -23,10 +23,17 @@
 
 class XQServiceRequest : public QObject
 {
-Q_OBJECT
+    Q_OBJECT
+
 public:
     XQServiceRequest(QString const& api, QString const& method, bool const& sync = true);
     ~XQServiceRequest();
+    bool send();
     bool send(QVariant& retValue);
+    void setSynchronous(const bool &synchronous);
+
+signals:
+    void requestCompleted(const QVariant& value) ;
+    void requestError(int err);
 };
-#endif
\ No newline at end of file
+#endif