Hello,
I followed the make/make install / etc. instructions in src/README.md, then ran (in the directory):
protoc --cpp_out=out examples/addressbook.proto
(I didn't specify -I because I was running from the current directory, which contained examples.)
The tutorial indicates that I should see the following code in the resulting addressbook.pb.h:
// name
inline bool has_name() const;
inline void clear_name();
inline const ::std::string& name() const;
inline void set_name(const ::std::string& value);
inline void set_name(const char* value);
inline ::std::string* mutable_name();
But I don't see anything like that in the file I generated (see attached). I'm not sure exactly what I'm doing wrong. Is there something obvious, or somewhere I should look to find out more?
Thank you! And please let me know if you need more information.
Sean