InitTransform
TheInitTransformmethod initializes this transform. This method is needed only if you subclassODTransform.
void InitTransform ();DISCUSSION
This method is not called directly to initialize this transform object, but is called by a subclass-specific initialization method. By convention, every subclass ofODTransformshould have a separate initialization method (for example, theInitMyTransformmethod) that is called when an instance of that subclass is created. The initialization method may have additional parameters beyond those of theInitTransformmethod. TheInitMyTransformmethod should call the inheritedInitTransformmethod at the beginning of its implementation.If you subclass
ODTransform, your subclass-specific initialization method, rather than itssomInitmethod, should handle any initialization code that can potentially fail. For example, your initialization method may attempt to allocate memory for your transform.OVERRIDING
If you subclassODTransform, you should not override this method.