Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] import C/C++ projects

Sorry the message was half sent

AbstractProjectImportWizard  extends  NewCProjectWizard {
   
    initial C/C++ project creation with configurations is done here

}

ProjectImportWizard extends AbstractProjectImportWizard implements IImportWizard {
       this class is incharged of copying the external project to the workspace
}

This functionality works in CDT 3.2.2, i have recently migrated to CDT 4.0, and since project creation is now different in CDT 4.0 how do i go about the above functionality

The AbstractProjectImportWizard can no longer extend NewCProjectWizard because this class is part of old CDT creation.
As i result when i try to import a project i am getting a invalid configuration error.



On 10/18/07, Sheldon Dsouza < sheldond@xxxxxxxxx> wrote: Hi,

         I have an import project wizard class that imports our C/C++ specific projects into workspace, and sets up the necessary configuration . This functionality works perfectly  in CDT 3.2.2

Implementation

AbstractProjectImportWizard  extends  NewCProjectWizard {
   
    initial C/C++ project creation with configurations is done here

}

ProjectImportWizard extends AbstractProjectImportWizard implements IImportWizard {

}

Back to the top