#ifndef __BLOGVIEW_H__ #define __BLOGVIEW_H__ #include 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 m_userChanged; }; #endif // __BLOGVIEW_H__