/
ihtiandr9
/
httpserver
Обзор
Документация
Войти
/
ihtiandr9
/
httpserver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
class-stylesheet
cpp/src/stylesheet.cpp
14 строк
363 B
lomaster (fvds)
add icon to page
11 фев 2026, 18:44
11 фев 2026, 18:44
8de8e99
Код
Авторство
О чём код?
#include <iostream> #include "stylesheet.h" static const std::string styles = "<link rel=\"stylesheet\" href=\"/%%style.css\">\n"; std::string StyleSheet::toString() { std::string stylestring = styles; return stylestring.replace(stylestring.find("%%style"), 7, name); } StyleSheet::StyleSheet(const std::string& s):styles(s){} StyleSheet css(styles);