|
@@ -31,7 +31,9 @@
|
|
|
|
|
|
#include "qgrpchttp2channel.h"
|
|
|
#include "insecurecredentials.h"
|
|
|
-#include "snakesimulatorclient.h"
|
|
|
+#include "qtprotobuf_global.pb.h"
|
|
|
+#include "snakesimulator_grpc.pb.h"
|
|
|
+
|
|
|
#include "clientwrapper.h"
|
|
|
|
|
|
class NoneCredencials : public QtProtobuf::CallCredentials
|
|
@@ -44,14 +46,9 @@ public:
|
|
|
int main(int argc, char *argv[])
|
|
|
{
|
|
|
QGuiApplication app(argc, argv);
|
|
|
- QtProtobuf::registerProtoTypes();
|
|
|
- qRegisterProtobufType<snakesimulator::Snake>();
|
|
|
- qRegisterProtobufType<snakesimulator::Field>();
|
|
|
- qRegisterProtobufType<snakesimulator::Stats>();
|
|
|
- qRegisterProtobufType<snakesimulator::Point>();
|
|
|
- qRegisterProtobufType<snakesimulator::Speed>();
|
|
|
- qRegisterProtobufType<snakesimulator::PlayingBestState>();
|
|
|
-\
|
|
|
+ QtProtobuf::qRegisterProtobufTypes();
|
|
|
+ snakesimulator::qRegisterProtobufTypes();
|
|
|
+
|
|
|
qmlRegisterUncreatableType<QtProtobuf::QGrpcAsyncReply>("snakesimulator", 1, 0, "QGrpcAsyncReply", "");
|
|
|
std::shared_ptr<snakesimulator::SnakeSimulatorClient> client(new snakesimulator::SnakeSimulatorClient);
|
|
|
auto chan = std::shared_ptr<QtProtobuf::QGrpcHttp2Channel>(new QtProtobuf::QGrpcHttp2Channel(QUrl("http://localhost:65002"), QtProtobuf::InsecureCredentials()|NoneCredencials()));
|