Description

Title:Being able to specify ClassDesc information through class attributes
Category:Workflow
Status:Considered
Priority:
Posted By:EPHERE ( Marsel Khadiyev )
Date Created:30 May 2009
Description:Currently to create a plugin user needs to define a class descriptor every time. For example: class MyPluginDesc : ClassDesc2 {...} class MyPlugin : GeomObject {...} It would be great if user was able to specify all ClassDesc-related properties through class attributes and ClassDesc would be automatically generated behind the scenes. For example: [Descriptor( SuperClassID = SClass_ID.GeomObject, className = "MyPlugin",...] class MyPlugin : GeomObject {...}