[C++] [Qt5] Add enum support for client and server (#2339)

* Add enum support to Qt5 client and server

* Correct model name prefix

* Remove tabs

* Correct wrong filename when prefix used
This commit is contained in:
sunn
2019-03-30 02:32:06 +01:00
committed by William Cheng
parent 0bc06f8d4d
commit 3bb4edf865
37 changed files with 931 additions and 80 deletions

View File

@@ -1,10 +1,12 @@
#include <QCoreApplication>
#include "PetApiTests.h"
#include "StoreApiTests.h"
#include "UserApiTests.h"
int main(int argc, char *argv[]) {
QCoreApplication a(argc, argv);
PetApiTests::runTests();
StoreApiTests::runTests();
UserApiTests::runTests();
return a.exec();
}