Re: RFC: adding some IDL syntax sugar

2012-12-12 Thread Noel Grandin
On Wednesday, 12 December 2012, Thorsten Behrens wrote: > > I'd like to add some IDL syntax sugar, so that instead of doing this: > > > > module com { module sun { module star { module formula { > > }; }; }; }; > > > > we can do this: > > > > module com::sun::star::formula { >

Re: RFC: adding some IDL syntax sugar

2012-12-12 Thread Thorsten Behrens
> I'd like to add some IDL syntax sugar, so that instead of doing this: > > module com { module sun { module star { module formula { > }; }; }; }; > > we can do this: > > module com::sun::star::formula { > }; > Sounds lovely to me - and you intend to keep supporting t

Re: RFC: adding some IDL syntax sugar

2012-12-12 Thread Stephan Bergmann
On 12/12/2012 10:58 AM, Noel Grandin wrote: I'd like to add some IDL syntax sugar, so that instead of doing this: module com { module sun { module star { module formula { }; }; }; }; we can do this: module com::sun::star::formula { }; (Or even drop the module {

RFC: adding some IDL syntax sugar

2012-12-12 Thread Noel Grandin
Hi I'd like to add some IDL syntax sugar, so that instead of doing this: module com { module sun { module star { module formula { }; }; }; }; we can do this: module com::sun::star::formula { }; Which is consistent with how namespaces are used elsewhere, and much mu