基本信息
源码名称:Windows下VC++使用protobuf 完整例子
源码大小:4.48M
文件格式:.rar
开发语言:C/C++
更新时间:2023-12-02
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
Windows下VC 使用protobuf 完整例子
Protocol Buffers(protobuf)是Google提供的一个开源序列化框架,这个demo将演示如何在Windows下VC 使用protobuf 配套文章地址:http://blog.csdn.net/mycwq/article/details/17606527

.
├── Windows下VC 使用protobuf 完整例子.rar
└── pbtest
    ├── pbtest
    │   ├── build.bat
    │   ├── include
    │   │   └── google
    │   │       └── protobuf
    │   │           ├── compiler
    │   │           │   ├── code_generator.h
    │   │           │   ├── command_line_interface.h
    │   │           │   ├── cpp
    │   │           │   │   └── cpp_generator.h
    │   │           │   ├── importer.h
    │   │           │   ├── java
    │   │           │   │   └── java_generator.h
    │   │           │   ├── parser.h
    │   │           │   ├── plugin.h
    │   │           │   └── python
    │   │           │       └── python_generator.h
    │   │           ├── descriptor.h
    │   │           ├── descriptor.pb.h
    │   │           ├── descriptor_database.h
    │   │           ├── dynamic_message.h
    │   │           ├── extension_set.h
    │   │           ├── generated_enum_reflection.h
    │   │           ├── generated_message_reflection.h
    │   │           ├── generated_message_util.h
    │   │           ├── io
    │   │           │   ├── coded_stream.h
    │   │           │   ├── gzip_stream.h
    │   │           │   ├── printer.h
    │   │           │   ├── tokenizer.h
    │   │           │   ├── zero_copy_stream.h
    │   │           │   ├── zero_copy_stream_impl.h
    │   │           │   └── zero_copy_stream_impl_lite.h
    │   │           ├── message.h
    │   │           ├── message_lite.h
    │   │           ├── reflection_ops.h
    │   │           ├── repeated_field.h
    │   │           ├── service.h
    │   │           ├── stubs
    │   │           │   ├── atomicops.h
    │   │           │   ├── atomicops_internals_x86_msvc.h
    │   │           │   ├── common.h
    │   │           │   ├── once.h
    │   │           │   ├── platform_macros.h
    │   │           │   ├── template_util.h
    │   │           │   └── type_traits.h
    │   │           ├── text_format.h
    │   │           ├── unknown_field_set.h
    │   │           ├── wire_format.h
    │   │           ├── wire_format_lite.h
    │   │           └── wire_format_lite_inl.h
    │   ├── libprotobuf.lib
    │   ├── libprotobuf_d.lib
    │   ├── pbtest.cpp
    │   ├── pbtest.vcxproj
    │   ├── pbtest.vcxproj.filters
    │   ├── pbtest.vcxproj.user
    │   ├── person.pb.cc
    │   ├── person.pb.h
    │   ├── person.proto
    │   └── protoc.exe
    ├── pbtest.sln
    └── pbtest.suo

11 directories, 54 files