mirror of
https://github.com/Relintai/crystal_cms_rcpp_fw.git
synced 2025-04-18 17:36:32 +02:00
22 lines
316 B
C++
22 lines
316 B
C++
#ifndef PAGE_CONTENT_H
|
|
#define PAGE_CONTENT_H
|
|
|
|
#include "core/containers/vector.h"
|
|
#include "core/string.h"
|
|
|
|
#include "core/reference.h"
|
|
|
|
class Request;
|
|
class FormValidator;
|
|
|
|
class PageContent : public Reference {
|
|
RCPP_OBJECT(PageContent, Reference);
|
|
|
|
public:
|
|
PageContent();
|
|
~PageContent();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif |