Hello,

I have nested messages like the following (it is a little more
complicated, but i am trying to simplify with this example).

package DB;

message Header
{
         required int32 ID=1;
         message param
         {
                 required int32 size_m = 1;
                 required int32 size_n = 2;
         }
         required param p = 2;
}

message data
{
         repeated double = 1;
}


message DB
{
          required Header = 1;
          required data = 2;
}


The problem I am having is that the accessor methods generated for the
"DB " does not have a
set_param( DB::Header::param ).

Is there something wrong with how I am structuring my messages? Any
help is appreciated.
Please let me know if this post is unclear and I will try and explain
myself better.

Thanks!
Linus

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To post to this group, send email to protobuf@googlegroups.com.
To unsubscribe from this group, send email to 
protobuf+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en.

Reply via email to