13 rader
270 B
C++
13 rader
270 B
C++
#ifndef DYNAMICCONTENTPOSTLIST_H
|
|
#define DYNAMICCONTENTPOSTLIST_H
|
|
|
|
#include "dynamiccontent.h"
|
|
class DynamicContentPostList : public DynamicContent
|
|
{
|
|
public:
|
|
using DynamicContent::DynamicContent;
|
|
std::string render() override;
|
|
};
|
|
|
|
#endif // DYNAMICCONTENTPOSTLIST_H
|