Re: [pygccxml-development] Terminology - help needed
Brought to you by:
mbaas,
roman_yakovenko
From: Matthias B. <ba...@ir...> - 2006-03-20 10:26:11
|
Roman Yakovenko wrote: > Please give a name to the next functionality: How about: > does declaration have wrapper? bool = has_wrapper() > should declaration have wrapper? create_wrapper(bool=True) enable_wrapper(bool=True) or do you mean: bool = requires_wrapper() > do not create wrapper. create_wrapper(False) enable_wrapper(False) disable_wrapper(bool=True) > Also for example in order to expose protected member function pyplusplus > creates wrapper, in this case user can just set ignore flag to true and it will > not be exposed. Do you think I should call helper function as "wrapper" too? At least, this sounds reasonable to me. > Constructors also have wrappers, but the only reason for their > existence is that I should create them correctly if I want to wrap > some another function. Should I call those constructor in wrapper > class "wrappers" too? As they are the constructors of a wrapper class I think it makes sense to call them "wrappers", too. - Matthias - |