Trying to run
ExampleCalculatorCustomClient., And following code gives error
// Build payload for Add operation
staff::DataObject tdoPayload("Add");
Compiler error:
src/main.cpp:24:36: error: variable ‘staff::DataObject tdoPayload’ has initializer but incomplete type
staff::DataObject tdoPayload("Add");
I tried passing string, char array, char pointer, But with same result.
^