HTTPServer/PageList.h
2019-05-30 14:16:57 -07:00

27 lines
402 B
C++

#ifndef __PageList_h__
#define __PageList_h__
#include "CommandList.h"
#include "__index.h"
#include "__setupadmin.h"
namespace http {
class PageList : public core::CommandList {
public:
PageList() {
add(index, "/ ");
add(setupadmin, "/setupadmin ");
}
private:
__index index;
__setupadmin setupadmin;
};
}
#endif