| class BarEventServer : public event_server_ct {
| public:
| class EventData {
| string i;
| public:
| EventData(const string &s) : i(s) {}
| friend ostream &operator<<(ostream &os, const EventData& d) { return os << d.i; }
^^^^^^^^^^^^^^^^^
You might need to remove this line, or #include <iostream.h>
:/
--
Carlo Wood <carlo@runaway.xs4all.nl>