#ifdef HAVE_CONFIG_H #include "config.h" #endif #include "HttpServ.h" #include "Message.h" #include "Buffer.h" #include "CopyJob.h" Message::Message(const String & t, const String & m, const String & U, Action * n) : Action(U), tit(t), msg(m), Next(n) { } Task * Message::Do(Variables * v, Variables *, Handle * h) { Handle * b = new Buffer(); Task * t = new CopyJob(b, h, -1, true); SendHead(b); (*b) << msg << "