SigningTS/client/signingcommoncase.cpp
changeset 41 b56d7e268634
parent 40 edc0144719a1
child 42 b9716e8867f1
--- a/SigningTS/client/signingcommoncase.cpp	Thu Aug 26 14:34:34 2010 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-
-#include "signingcommoncase.h"
-
-SigningCommonCase::SigningCommonCase(QNetworkAccessManager &aMgr, QObject *parent) :
-    QObject(parent), mgr(aMgr)
-{
-    testBaseURL = ::BaseURL + "?key=" + ::DefaultKey + "&api=" + ApiVersion + "&cmd=";
-}
-
-void SigningCommonCase::run()
-{
-
-}
-
-void SigningCommonCase::uploadSIS()
-{
-    QString reqPOST = BaseURL + "uploadSIS";
-    QNetworkRequest request(QUrl(reqPOST.toUtf8()));
-    request.setHeader(QNetworkRequest::ContentTypeHeader,"x-epoc/x-sisx-app");
-
-    // connect this request to a method for reply.
-
-    // here is the sis file which we will post to the server.
-
-    //mgr.post(request);
-}
-
-TestInterface::TRESULT_STATE  SigningCommonCase::getResult()
-{
-   return TestInterface::INPROGESS;
-}