This commit is contained in:
kuepper 2004-09-20 21:47:15 +00:00
commit de69e235f4
3 changed files with 13 additions and 6 deletions

View file

@ -1,4 +1,6 @@
#include <stdexcept> // runtime_error
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
//-----------------------------------------------------------------------------
// FirstBitGA.cpp
@ -8,12 +10,15 @@
//
//-----------------------------------------------------------------------------
// standard includes
#include <iostream> // cout
#include <strstream> // ostrstream, istrstream
#include <iostream>
#include <stdexcept>
#ifdef HAVE_SSTREAM
#include <sstream>
#else
#include <strstream>
#endif
// the general include for eo
#include <eo>
//-----------------------------------------------------------------------------