sic/src/routerin.cc

39 lines
493 B
C++
Raw Normal View History

2013-11-22 02:03:22 +01:00
2013-11-22 14:03:01 +01:00
#include <cstring>
using std::strcmp;
#include "Foohash.H"
2013-11-22 02:03:22 +01:00
namespace routerin {
class EventRouter {
};
2013-11-22 02:03:22 +01:00
class BaseHandler{
virtual int handle_event() = 0;
};
2013-11-22 02:03:22 +01:00
class FilesEventHandler:public BaseHandler{
};
2013-11-22 02:03:22 +01:00
class StaticEventHandler:public BaseHandler{
};
2013-11-22 02:03:22 +01:00
};
//REST API Documentation
///files/<zahl> (index in vector<Sicccobjst>)
2013-11-22 14:03:01 +01:00
///date/<datestring> (files am date hochgeladen)
2013-11-22 02:03:22 +01:00
///static/<mööp.html> (statisches html ausliefern)
///uploadmagic/ (upload form request)