- Add tabbed interface (Basic/Advanced/History) - Add quick action buttons for common formats - Add preset system (Clash/Surge/QuanX/Sing-box/Node list) - Add form persistence with localStorage - Add conversion history with restore functionality - Add URL format validation - Add result statistics (size/lines/time) - Add toast notifications - Add light/dark theme support - Add i18n (Chinese/English auto-detect) - Add responsive mobile layout - Update CMakeLists.txt and main.cpp routing
15 lines
249 B
C++
15 lines
249 B
C++
#ifndef WEBAPP_PAGE_H_INCLUDED
|
|
#define WEBAPP_PAGE_H_INCLUDED
|
|
|
|
#include <string>
|
|
|
|
#include "server/webserver.h"
|
|
|
|
namespace webapp_page {
|
|
|
|
std::string page(Request &, Response &response);
|
|
|
|
} // namespace webapp_page
|
|
|
|
#endif // WEBAPP_PAGE_H_INCLUDED
|