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