eoOp.h: binOp's second arg is const once more all dsp and dsw files were touched by msvc, but did add some stuff (which will be added to eo later) Hope this all works
17 lines
329 B
C++
17 lines
329 B
C++
#include <eoPersistent.h>
|
|
|
|
//Implementation of these objects
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
istream & operator >> ( istream& _is, eoPersistent& _o ) {
|
|
_o.readFrom(_is);
|
|
return _is;
|
|
};
|
|
|
|
// temporary location for the one and only eoRng object
|
|
|
|
#include "eoRNG.h"
|
|
|
|
eoRng rng;
|
|
|