From d4347cc8716cb447527db3207057b6d51230a6c2 Mon Sep 17 00:00:00 2001 From: john stone Date: Fri, 22 Nov 2013 02:03:22 +0100 Subject: [PATCH] =?UTF-8?q?aus=20dokugr=C3=BCnden:=20die=20routerin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routerin.cc | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 routerin.cc diff --git a/routerin.cc b/routerin.cc new file mode 100644 index 0000000..5a7d865 --- /dev/null +++ b/routerin.cc @@ -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/ (index in vector) + +///dfiles/ (files am date hochgeladen) + +///static/ (statisches html ausliefern) + +///uploadmagic/ (upload form request) + +