example_lib.cc 241 字节
Newer Older
1 2
#include "third_party/protobuf_test/example_lib.h"

Y
Yi Wang 已提交
3 4 5 6
namespace third_party {
namespace protobuf_test {

std::string get_greet(const Greeting& who) {
7 8
  return "Hello " + who.name();
}
Y
Yi Wang 已提交
9 10 11

}  // namespace protobuf_test
}  // namespace thrid_party