mirror of
https://github.com/Relintai/crystal_cms_rcpp_fw.git
synced 2025-04-22 20:41:18 +02:00
22 lines
321 B
C++
22 lines
321 B
C++
#ifndef TEXT_CONTENT_H
|
|
#define TEXT_CONTENT_H
|
|
|
|
#include "../page_content.h"
|
|
|
|
#include "core/containers/vector.h"
|
|
#include "core/string.h"
|
|
|
|
class Request;
|
|
class FormValidator;
|
|
|
|
class TextContent : public PageContent {
|
|
RCPP_OBJECT(TextContent, PageContent);
|
|
|
|
public:
|
|
TextContent();
|
|
~TextContent();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif |