This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/src/eoPersistent.cpp
mac 6469376880 Fixed bug in eoGOpSelector (missing break!)
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
2000-03-06 16:05:47 +00:00

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;