Re: [Library Release] dproto

2013-10-09 Thread Jesse Phillips
On Tuesday, 8 October 2013 at 08:11:34 UTC, Kagamin wrote: On Saturday, 5 October 2013 at 20:56:21 UTC, Matt Soucy wrote: message Point { optional int32 x = 1 [default=166]; required int32 y = 2; optional string label = 3; message Coord { required

Re: [Library Release] dproto

2013-10-09 Thread Jesse Phillips
On Tuesday, 8 October 2013 at 20:50:22 UTC, Matt Soucy wrote: Thanks for the tip - I actually did find this one when I started using this, however I found it on another page that hadn't been updated (that I ironically can't find now), so I wrongfully assumed that it was abandoned. I did find

Re: [Library Release] dproto

2013-10-09 Thread Matt Soucy
On 10/09/2013 01:55 AM, Jesse Phillips wrote: Groups are a way to combine this, but they are deprecated so who'd want to support that. Exactly, I didn't even bother planning out support for them. -- Matt Soucy http://msoucy.me/ signature.asc Description: OpenPGP digital signature

Re: [Library Release] dproto

2013-10-09 Thread Matt Soucy
On 10/09/2013 10:38 AM, Jesse Phillips wrote: On Tuesday, 8 October 2013 at 20:50:22 UTC, Matt Soucy wrote: Thanks for the tip - I actually did find this one when I started using this, however I found it on another page that hadn't been updated (that I ironically can't find now), so I

Re: [Library Release] dproto

2013-10-08 Thread Kagamin
On Saturday, 5 October 2013 at 20:56:21 UTC, Matt Soucy wrote: message Point { optional int32 x = 1 [default=166]; required int32 y = 2; optional string label = 3; message Coord { required int32 a = 1; required int32 b = 2;

Re: [Library Release] dproto

2013-10-08 Thread Matt Soucy
On 10/08/2013 04:11 AM, Kagamin wrote: On Saturday, 5 October 2013 at 20:56:21 UTC, Matt Soucy wrote: message Point { optional int32 x = 1 [default=166]; required int32 y = 2; optional string label = 3; message Coord { required int32 a = 1; required int32 b

Re: [Library Release] dproto

2013-10-08 Thread Matt Soucy
On 10/05/2013 06:20 PM, Jesse Phillips wrote: This is more of an FYI. I've been using/updating https://github.com/opticron/ProtocolBuffer Boost License And while it doesn't have any helper functions, it can generate source at compile time. Generates D1 code if requested Been using it to

[Library Release] dproto

2013-10-05 Thread Matt Soucy
Hello, all- I'd like to present a library that I've been working on on-and-off for the last couple of months. Protocol Buffers are a format produced by Google that acts as an Interface Description Language for serializable data. Basically, given a file containing lines like: message Point {

Re: [Library Release] dproto

2013-10-05 Thread Jesse Phillips
This is more of an FYI. I've been using/updating https://github.com/opticron/ProtocolBuffer Boost License And while it doesn't have any helper functions, it can generate source at compile time. Generates D1 code if requested Been using it to walk OSM data for no particular reason