aus dokugründen: die routerin

This commit is contained in:
john stone 2013-11-22 02:03:22 +01:00
parent aab2ae470b
commit d4347cc871
1 changed files with 34 additions and 0 deletions

34
routerin.cc Normal file
View File

@ -0,0 +1,34 @@
namespace routerin {
class EventRouter {
}
class BaseHandler{
virtual ~BaseHandler = 0;
virtual int handle_event() = 0;
}
class FilesEventHandler:public BaseHandler(){
}
class StaticEventHandler:public BaseHandler(){
}
};
//REST API Documentation
///files/<zahl> (index in vector<Sicccobjst>)
///dfiles/<datestring> (files am date hochgeladen)
///static/<mööp.html> (statisches html ausliefern)
///uploadmagic/ (upload form request)