stuff-from-scratch/apps/website-generator/ContentPage.h

11 lines
158 B
C++

#pragma once
#include "ContentFile.h"
class ContentPage : public ContentFile
{
public:
ContentPage(const Path& filename);
void load() override;
};