Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3279506
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:36:01+00:00 2026-05-17T19:36:01+00:00

I certainly don’t know how to title this question, sorry. I’m having some problems

  • 0

I certainly don’t know how to title this question, sorry.

I’m having some problems to design the following system.

I need a class which will make some work, but this work can be done in a bunch of different ways, say that this work will be made through “drivers”.

These drivers can have different interfaces and because of that I need to build a wrapper for each driver.

So I got (or I need) this:

       Me --->    MainClass   ---->    Wrapper ---->  Drivers

MainClass is the class I will touch and will call the drivers methods through different wrappers.

Here an example of usage:

MainClass worker;
worker.set_driver("driver_0");
worker.start_process();      //Start process calls a wrapper method which calls a driver's method.

To achieve this I made an interface class:

class Driver_Interface : public QObject
{
     Q_OBJECT
 public:
   Driver_Interface(QObject* parent=0) : QObject(parent){}
   virtual bool open()=0;
   virtual bool close()=0;
   virtual bool write()=0;
   virtual bool set_config()=0;
};

A driver wrapper has this shape:

class Driver0 : public Driver_Interface
{
Q_OBJECT
public:
    Driver0( QObject* parent=0);
    Driver0();

    bool open();
    bool close();
    bool write();
    bool set_config();
};

Finally here comes the conflicting point, defining the MainClass:
I would like to avoid to create one member for each wrapper, so I tried this, and right now compiler doesn’t complains:

class MainClass
{
public:
    MainClass();
    ~MainClass();
    void init();
    void set_driver( const QString& );
    void start_process();
protected:
    QString driver_str;
    Driver_Interface* driver;  //!<--- Here Here!!!
};

When setting the driver chosen, I do this:

if( driver_str.compare("driver_0")==0 )
     this->driver = new Driver_0();
  1. Is this a valid C++ configuration or will I have problems sooner or later?
    Basically, what worries me is the creation of the driver of a different type from Driver_Interface, I’m seeing that it casts automatically and no one complains…
  2. Actually I have some problems now compiling, the infamous vtables not defined in Driver_0… does this have some relation with what I want to achieve? UPDATED: I fixed this by deleting the *Driver_Interface* constructor.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:36:02+00:00Added an answer on May 17, 2026 at 7:36 pm

    To me your basic idea seems to be fine. I would consider separating the creation of drivers into a factory (or at least a factory method) though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As I don't use vi all that much and certainly not for my primary
Now I know about the normal CSS list styles (roman, latin, etc) and certainly
I've tried Infragistics on this but they don't seem to understand what I am
We have 18 databases that should have identical schemas, but don't. In certain scenarios,
Certainly there's the difference in general syntax, but what other critical distinctions exist? There
Resharper certainly thinks so, and out of the box it will nag you to
Visual Studio has certainly gone from strength to strength since humble Visual Studio 6
Anyone who has programmed with actionscript 3.0 has most certainly noticed its lack of
I'm looking for a profiler to use with native C++. It certainly does not
I'm a student of web development (and college), so my apologies if this comes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.