Begin dynamic content generators

This commit is contained in:
2022-03-27 08:36:25 +02:00
부모 a4a45d9add
커밋 a524674149
5개의 변경된 파일98개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -0,0 +1,16 @@
#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