2023-04-05 16:36:20 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../blankie/serializer.h"
|
2023-04-08 07:41:34 +00:00
|
|
|
struct User; // forward declaration from ../../pixivmodels.h
|
2023-04-05 16:36:20 +00:00
|
|
|
struct Config; // forward declaration from ../../config.h
|
|
|
|
|
|
|
|
using Element = blankie::html::Element;
|
|
|
|
|
|
|
|
Element generate_user_header(const User& user, const Config& config);
|