#include "HttpServ.h" #include "Message.h" #include "config.h" Message::Message(const String & t, const String & m, const String & U, Action * n) : Action(U), tit(t), msg(m), Next(n) { } void Message::Do(Variables * v, Handle * h) { SendHead(h); (*h) << msg << "
GetURL() : "start") << "\">" << endnl << "" << endnl; v->Dump(h); (*h) << "
" << endnl; SendFoot(h); Accessed(); } String Message::GetTitle(void) { return tit; }