11 lines
270 B
C++
11 lines
270 B
C++
#ifndef __BLOGAPPLICATION_H__
|
|
#define __BLOGAPPLICATION_H__
|
|
|
|
#include <Wt/WApplication.h>
|
|
|
|
class BlogApplication : public Wt::WApplication {
|
|
public:
|
|
BlogApplication(const Wt::WEnvironment &env, Wt::Dbo::SqlConnectionPool &blogDb);
|
|
};
|
|
|
|
#endif // __BLOGAPPLICATION_H__
|