Re: [OctDev] Data Acquisition Package

2010-06-16 Thread Michael Goffioul
As the 2 classes/objects are inter-dependent, I think it's better to include both into the same .oct file. What's happening is that channel.oct is not loaded into memory when octave loads analoginput.oct, leading to unresolved references. This does not happen when channel.oct is loaded explicitely

Re: [OctDev] Data Acquisition Package

2010-06-16 Thread David Bateman
Pablo Daniel Pareja Obregón wrote: In order to do so, I must implement my own user defined types, as I read in [2]. However, after googling a while, I haven't found much documentation and examples on how programming my own types (besides [2]). The Coda document was written against 2.1.x and

Re: [OctDev] Data Acquisition Package

2010-06-16 Thread Pablo Daniel Pareja Obregon
Thanks for the guick response! I merged both, headers and sources, into only one header and one source, and it worked fine independently of the order of loading. That is both classes/objects are now in the same file. Thanks again. Regards, Pablo On Miércoles 16 Junio 2010 10:13:21 Michael