[protobuf] Re: generating proto documentation

2013-06-04 Thread Justin Esplin
I realize this thread had been dead for several years, but I'm wondering if there is a good link somewhere to your perl script? I need to generate documentation for proto files and had decided that was probably the best approach. If there were a plugin for Visual Studio that would be fine too

Re: generating proto documentation

2009-05-07 Thread OJW
I've put up the perl script we use to generate documentation of proto files: http://dev.openstreetmap.org/~ojw/proto2wikidoc Our proto files are in quite a simplified format, so this probably won't parse your files without modification. However, it's a base to start from if anyone wants to add

Re: generating proto documentation

2009-03-17 Thread Mark Assad
HI, I have a bad solution. What I've been doing has been generating the .cc/.h files, and then using doxygen to document those classes. You can document C++ classes from files other than the header files that define the classes. It's messy, error prone, and you end up with a lot of extra

Re: generating proto documentation

2009-03-17 Thread bart van deenen
I'm thinking of writing some scripting stuff, convert 'message' to 'struct' and stuff like that, and see how far I'll get with converting proto files into some sort of pseudo-c. I think I'll mogrify the 'optional' and 'required' and 'repeated' flags to some custom doxygen tags. As soon as I have