On Tue, 6 Dec 2005, federico wrote:
sorry, this solves a part of the problem. lots of errors still remains:
To get rid of "cerr" and "endl" errors, insert this line at top of Array.cpp :
using namespace std;
To get rid of the rest of the errors, insert these lines inside of the Array<type> block of Array.h :
using Collection<type>::getSize;
using Collection<type>::array;
using Collection<type>::size;
using Collection<type>::allocSize;
using Collection<type>::allowGrowthQ;
using Collection<type>::growthAmount;
using Collection<type>::maxSize;
Which is because the new C++ standard is brain-damaged, and GCC4 follows it closely.
Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju Freelance Digital Arts Engineer, Montréal QC Canada