We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba74440 commit ea68d1dCopy full SHA for ea68d1d
2 files changed
src/protobuf.cppzmq/client/main.cpp
@@ -1,8 +1,8 @@
1
#include "event.pb.h"
2
+#include <include/common.h>
3
#include <spdlog/spdlog.h>
4
#include <string>
5
#include <zmq.hpp>
-#include <include/common.h>
6
7
int main()
8
{
src/protobuf.cppzmq/proto/event.proto
@@ -2,13 +2,13 @@ syntax = "proto3";
package own.proto;
-
message Event {
- string sender = 1;
enum PingPong {
9
PING = 0;
10
PONG = 1;
11
}
+
+ string sender = 1;
12
PingPong action = 2;
13
int32 ping_count = 3;
14
int32 pong_count = 4;
0 commit comments