I’m going to make my application extensible.
Where I can read information about writing programs which support plugins?
C++
I’m going to make my application extensible. Where I can read information about writing
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A plug-in architecture is what you need to look-up and read about. A SO answer will not help beyond providing a few stray links. I’ll try to explain as briefly as I can: Typically, plug-ins are a set of dynamic libraries that the host application loads (usually at start up, sometimes delay loaded for efficiency purposes). They then become part of the application and behave as if they were a native/core component. Hence, you need to rethink about your application’s architecture and module design as well. Here are a set of questions you’ll need to answer: