Hi Felix!
Thank you for your reply...As I am a beginner in object oriented programming with Labview (did only some stuff in C++, programming Labview without objectorientation since 6 years now...), I am trying hard to understand your ideas and reading on the design patterns...
First of all, as far as I understand, the factory design pattern let me initialize objects at runtime as needed without loading the class (perfect for plugins?). So this would help me to handle all my different data devices...like camera, scanner, ad-card and so on. Is this right?
I am only trying to implement my devices in classes to use dynamic dispatching which seems to me very useful for what I am trying (i can use a record.vi for every device). So, if I have, let's say, 5 data devices which have totally different settings (meaning I have to expand my front panel for every new device) and I have to implement several different VIs (for example for the AD-Card: channels to record, for the camera somethink like region of interest...), will this pattern be useful for me? If yes, why?
As a second, I understand how to use DVR (only worked with single-element-queues so far), but how I can intialize all my different data devices (camera, scanner..) with the same DVR? If I initialize the camera, the DVR (which is a member variable of my ImageDevice-class), will be created...if I know initialize the scanner, how can I pass the DVR from the camera-object to the scanner-object? Is this meant by "the factory object (the DVR??) needs to be a singleton), that if i initialize my camera and later the scanner, the same buffer is used?
What do you mean, btw, with "serialization that naturally takes place"?
If it's really a design constraint to make this buffer static? Let me say...the only thing I'd like to do is to know where I can find my data...if I use the camera or the scanner, there shoudn't be separate buffers...as all saving, displaying and manipulation-functions are already implemented, I don't like to distinguish where my data comes from. The saving, for example, is the same routine for scanner as it is for camera...so I want to use the same data buffer.
To make the buffer an object itself would be a good method, but I think I would then have to pass this object to all created data devices, so that they can write into this buffer if i call the "record.vi". But I think this would be a very easy solution...create the data buffer on start, and on initialization of a data device, I can pass the buffer to a member variable.
By the way: How objects are passed in LabView? I started using queues to do a "by reference" call, as I have to transfer large amounts of data...if I now use classes and pass these classes into my program, the class data is handled by reference or by value? Meaning: If i have one wire which goes parallel to 2 sub-vis, if the upper subvi changes something in the class, it will simultaneously change in the lower subvi?
Thank you again for all of your help!
Christian