14 lines
163 B
C++
14 lines
163 B
C++
#include "ContentPage.h"
|
|
|
|
ContentPage::ContentPage(const Path& filename)
|
|
: ContentFile(filename)
|
|
{
|
|
|
|
}
|
|
|
|
void ContentPage::load()
|
|
{
|
|
ContentFile::load();
|
|
}
|
|
|
|
|