added static eventlist for hashfunc generation

This commit is contained in:
john stone 2013-11-22 13:39:49 +01:00
parent 58300027ce
commit 63bab16fbc
2 changed files with 13 additions and 7 deletions

7
src/eventlist.txt Normal file
View File

@ -0,0 +1,7 @@
#This List is for generating the
#Foohash class with gperf that is needed
#in our Router
/files
/date
/static
/upload

View File

@ -3,20 +3,19 @@ namespace routerin {
class EventRouter {
}
};
class BaseHandler{
virtual ~BaseHandler = 0;
virtual int handle_event() = 0;
}
};
class FilesEventHandler:public BaseHandler(){
}
class FilesEventHandler:public BaseHandler{
};
class StaticEventHandler:public BaseHandler(){
}
class StaticEventHandler:public BaseHandler{
};
};