mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
27 lines
508 B
C++
27 lines
508 B
C++
#ifndef PAGED_ARTICLE_ENTRY_H
|
|
#define PAGED_ARTICLE_ENTRY_H
|
|
|
|
#include <map>
|
|
#include "core/containers/vector.h"
|
|
#include "core/string.h"
|
|
|
|
#include "core/file_cache.h"
|
|
#include "core/http/web_node.h"
|
|
|
|
#include "core/http/request.h"
|
|
|
|
#include "core/reference.h"
|
|
|
|
class PagedArticleEntry : public Reference {
|
|
RCPP_OBJECT(PagedArticleEntry, Reference);
|
|
public:
|
|
String url;
|
|
String summary_page;
|
|
std::map<String, String *> pages;
|
|
FileCache *file_cache;
|
|
|
|
PagedArticleEntry();
|
|
~PagedArticleEntry();
|
|
};
|
|
|
|
#endif |