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

15 lines
163 B
C++
Raw Normal View History

#include "ContentPage.h"
ContentPage::ContentPage(const Path& filename)
: ContentFile(filename)
{
}
void ContentPage::load()
{
ContentFile::load();
}