#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