00001 // -*- c++ -*- 00002 00003 #ifndef INFOSERVLET_H 00004 #define INFOSERVLET_H 00005 00006 #include <qhttpservlet.h> 00007 00013 class InfoServlet : public QHttpServlet 00014 { 00015 public: 00016 InfoServlet( QServletConfig *cfg, const char *info=0 ); 00017 ~InfoServlet(); 00018 00019 virtual QDateTime lastModified( QHttpServletRequest *req ); 00020 00021 protected: 00022 virtual bool doGet( QHttpServletRequest *req, QHttpServletResponse *res ); 00023 }; 00024 00025 #endif 00026 00027 // Local Variables: 00028 // c-basic-offset: 3 00029 // End: 00030