Older/WebApplication/view/BlogView.h
luocai 27ffee57be
Some checks failed
Deploy / PullDocker (push) Successful in 4s
Deploy / Build (push) Failing after 1m34s
Deploy Docker Images / Docusaurus build and Server deploy (push) Successful in 14s
add blog code.
2024-11-01 19:05:20 +08:00

16 lines
361 B
C++

#ifndef __BLOGVIEW_H__
#define __BLOGVIEW_H__
#include <Wt/WCompositeWidget.h>
class BlogImpl;
class BlogView : public Wt::WCompositeWidget {
public:
BlogView(const std::string &basePath, Wt::Dbo::SqlConnectionPool &db, const std::string &rssFeedUrl);
private:
BlogImpl *m_impl;
Wt::Signal<Wt::WString> m_userChanged;
};
#endif // __BLOGVIEW_H__