Re: Message type scope resolution

2009-07-30 Thread Kenton Varda
In other words, the scoping semantics are just like C++ namespaces, but we use . rather than :: as the scope separator. On Thu, Jul 30, 2009 at 1:50 AM, Constantinos Michael cmmich...@gmail.comwrote: Try doing this: message foo { message X { } message bar { message X { }

Message type scope resolution

2009-07-29 Thread naderp
Hi, Does the protocol buffer language have a mechanism for resolving types across scopes. Eg, given message foo { message X {} message bar { message X{} message abc { message foo:X--- This is not legal, but how do you do it? } } }