filter 최종 종료시에 website에 이를 알리는 기능

git-svn-id: svn://192.168.0.12/source@314 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
admin
2016-11-11 06:24:32 +00:00
parent 9f95082415
commit 4e6aead7b3
7 changed files with 192 additions and 213 deletions

View File

@@ -3,7 +3,7 @@
#include <QCoreApplication>
#include <QLocale>
#include <QDate>
#include "shttpsender.h"
using namespace std;
int main(int argc, char *argv[])
{
@@ -20,6 +20,7 @@ int main(int argc, char *argv[])
return -1;
}
a.processEvents();
if (!filter.init(argv[1], argv[2]))
//if (!filter.init(QString::number(370), "Check"))
@@ -34,5 +35,8 @@ int main(int argc, char *argv[])
exit(1);
}
return 0;
SHttpSender httpSender;
httpSender.SendData(filter.getCompanyNum());
return a.exec();
}