Description:
-
The constructors of BitMaskIterator were changed.
-
One of the constructors was changed from "const BitMask*, int, int, int, int" to "const BitMask*, unsigned int, unsigned int, unsigned int, unsigned int.".
-
The other constructor was changed from "const BitMask*, RasterElement*" to "const BitMask*, const RasterElement*".
-
The "int getCount()" was made a const method so that it can be called on a const BitMaskIterator object.
-
The "getPixel()" method that takes no arguments has been removed. It was of little utility and was never intended to be in the public interface.
Description: If you compile against this version of the SDK, the behavior of any
Importer you have will change. The
ImporterShell now calls setWizardSupported(false), which means your importer will no longer show up in the Wizard Builder. This change was made because in general users should be using the "Import Data Set" wizard item instead of adding the importer plug-in directly to a wizard. If your users have existing wizards that used your importer plug-in directly that will continue to work. If you insist on making your importer plug-ins visible to users in the Wizard Builder, simply add setWizardSupported(true) to the constructor of your
Importer subclass.