16 lines
361 B
C
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__
|