c++ Programming Glossary: decorator
Expose a non-const but noncopyable member in Boost Python http://stackoverflow.com/questions/15093504/expose-a-non-const-but-noncopyable-member-in-boost-python self def __call__ self self.fn def _signal_connect fn def decorator self slot # If the slot is not an instance of Slot then aggregate.. function with the slot. return fn self slot return decorator # Patch Signal.connect. Signal.connect _signal_connect Signal.connect..
C++ Class Extension http://stackoverflow.com/questions/1621511/c-class-extension a factory to hide the actual implementation class Define a decorator class Define functions that operate on instances of the class..
Making sure the method declaration is inherited http://stackoverflow.com/questions/5374326/making-sure-the-method-declaration-is-inherited exact purpose C 0x introduces the override member function decorator as is already implemented in VC 2005 and later http msdn.microsoft.com..
Function hooking in C++? http://stackoverflow.com/questions/7743771/function-hooking-in-c Programming JavaScript's first class functions OOP decorator pattern WinAPI subclassing Ruby's method_missing SWIG 's exception..
C++ dll and C# call http://stackoverflow.com/questions/7872392/c-dll-and-c-sharp-call is so BOOL func LPWSTR strIn __out LPWSTR strOut The __out decorator has no real effect other than documenting that you want to modify..
Memoized, recursive factorial function? http://stackoverflow.com/questions/9729212/memoized-recursive-factorial-function I guess this is probably slightly similar to your python decorator although I have never really done any python. The code would..
|