example_lib.cc 159 字节
Newer Older
1 2 3 4 5 6
#include "third_party/protobuf_test/example_lib.h"
#include <string>

std::string get_greet(const ::protos::Greeting& who) {
  return "Hello " + who.name();
}