adding acconfig.h

This commit is contained in:
gustavo 1999-02-04 17:38:39 +00:00
commit 57e734fdf2
4 changed files with 9 additions and 8 deletions

2
eo/acconfig.h Normal file
View file

@ -0,0 +1,2 @@
#undef PACKAGE
#undef VERSION

View file

@ -5,7 +5,6 @@
###############################################################################
lib_LTLIBRARIES = libeo.la
libeo_la_SOURCES =
libeo_la_SOURCES = eoPersistent.cpp eoPrint eoPersistent.cpp eoPrintable.cpp
libeo_la_SOURCES = eoPrintable.cpp eoPersistent.cpp
libeoincdir = $(includedir)/eo
libeoinc_HEADERS = eo EO.h eoDup.h eoMultiMonOp.h eoPop.h eoUniform.h eoESChrom.h eoNegExp.h eoProblem.h eoVector.h eoFitness.h eoNormal.h eoRnd.h eoXOver2.h eo1d.h eoID.h eoObject.h eoString.h eoAged.h eoKill.h eoOp.h eoTranspose.h eoBin.h

View file

@ -2,9 +2,9 @@
//Implementation of these objects
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
istream & operator >> ( istream& _is, eoPersistent& _o ) {
_o.readFrom(_is);
return _is;
};
_o.readFrom(_is);
return _is;
};

View file

@ -17,7 +17,7 @@ const unsigned MAXLINELENGTH=1024;
//-----------------------------------------------------------------------------
#include <iostream> // istream, ostream
#include <string> // para string
#include <string> // para string
//-----------------------------------------------------------------------------
#include <eoPrintable.h>