| Class | RS::Utils::RSObjcWrapper |
| In: |
rsil/utils/rsobjcwrapper.rb
|
| Parent: | Object |
| Class: | RSObjcWrapper |
| File: | rsobjcwrapper.rb |
| Purpose: | RSObjcWrapper acts as an "abstrakt" class to indicate access to OSX classes in iheriting classes. |
| Created by: | Mario Pehle, 2006/04/29 |
| Required modules: | - |
| Offers functions: | - |
| Description: | You have to impelement this method within your class. It gives access to the basic Core Image object of this object. |
| Precondition: | - |
| Postcondition: | An object of one class out of module OSX will be returned. |
| Exceptions: | NotImplementedError |
| Uses: | - |
| Returns: | OSX::OCObject |
| Parameters: | Name | i/o/io | default | Meaning |
# File rsil/utils/rsobjcwrapper.rb, line 43
43: def objc_object
44: raise NotImplementedError, 'You have to overwrite this method.'
45: end