Perhaps I should have presented my original question in a different way.
Stepping back a little now...
There exists a power meter class that includes all the commands required to operate meters and read sensors. It queries the equipment on initialization and then sends the appropriate commands for whichever piece is found.
It is true that sensors are not always connected to meters. They can be connected to other equipment or directly to the PC via USB. We don't currently use these approaches, but it is not impossible in the future. I figured if I had to, I could create commands for those other types of devices in my power meter class, but that is seeming a bit clunky now.
The meat of the application will be a sequence of commands that executes. I would like to use something like inputSensor.read and let the sensor and instrument classes take care of where said sensor is connected and how to read it. So I wanted a way to store both a meter and a port in a single structure that would reference the correct location of that sensor. Mikael has it exactly right, I want the user to not worry at all about how the sensor is connected. He just asks for the power at the input sensor and it is returned to him. There will be a configuration file that maps logical sensor names to physical locations, but the user won't need to know about it.
It does appear that I need a more robust structure that will, at the very least, handle the different interfaces that a sensor might be connected to.
A couple of questions, then:
For academic purposes, let's say I want to create the structure I used in my previous post. I have a power meter object that I can access independently from the sensors, and I have multiple sensor objects that reference a single meter object. Daklu, you said that you thought that DVR was unnecessary. How do I do it without DVR? I couldn't figure out how to create a pointer (not a real pointer, I know) to that meter object in the sensor object..
SEQ? That's creating an unnamed queue and storing it's reference?
I was originally envisioning this:
Power meter class with functions to read power, set offsets, open windows, etc
Power sensor class that simply held a reference to a meter object and the port that the sensor was connected to. Wrapper functions that call methods of the power meter class.
Perhaps my structure should look something like this: Power meter class that handles meter related tasks - windows on the display, calibration... but not anything sensor related
A sensor interface class that is roughly analogous to my original meter class without meter-specific functions. It will include an device address (or ref to an instrument object) and port. Since the commands will be interface dependent, they have to go here, right? In an earlier post, you talked about creating subclasses of this class for each type of interface. So for a sensor connected to a power meter, you'd have a power meter subclass with power meter object in its private data. Each subclass would have the specific commands necessary to communicate with that device.
A power sensor class that has includes its own unique sensor interface object. Although it has functions to read power, set offsets, filtering, etc. they are simply wrappers for the appropriate interface class functions.
A related question - I was going to code this so that there was a single "Power Meter" class with a number of methods. Each method would read the instrument type from private data and then send the appropriate command. How much do I gain from making the power meter class virtual each instrument it's own subclass? The host approach above requires it, but it seems like it might be better regardless...
Thanks so much for all of your help. I'm sure your replies take as long as mine, and that's no small amount of time.
Pete