17 sor
344 B
C
17 sor
344 B
C
|
#ifndef DYNAMICCONTENTPOSTLIST_H
|
||
|
#define DYNAMICCONTENTPOSTLIST_H
|
||
|
|
||
|
#include "dynamiccontent.h"
|
||
|
class DynamicContentPostList : public DynamicContent
|
||
|
{
|
||
|
private:
|
||
|
std::string catname;
|
||
|
|
||
|
public:
|
||
|
using DynamicContent::DynamicContent;
|
||
|
void setCategory(std::string catname);
|
||
|
std::string render() override;
|
||
|
};
|
||
|
|
||
|
#endif // DYNAMICCONTENTPOSTLIST_H
|