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

12 lines
158 B
C
Raw Normal View History

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