]> git.llucax.com Git - software/posixx.git/commitdiff
Add accessors with reference semantics to objects
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 27 Feb 2009 18:22:30 +0000 (16:22 -0200)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 27 Feb 2009 18:46:15 +0000 (16:46 -0200)
New accessor methods are added to composed objects to access to the object
members using the struct. For example, you can access to a sockaddr tipc
portid via sockaddr.port_id() method, and mutate the original sockaddr:

sockaddr sa(portid(1, addr(1, 1, 1));
sa.port_id().ref = 5;

Now sa.addr.id.ref value is 5.


No differences found