31 lines
460 B
C++
31 lines
460 B
C++
#ifndef TDATABASE_H
|
|
#define TDATABASE_H
|
|
|
|
#include "database.h"
|
|
|
|
#ifdef NUT_NAMESPACE
|
|
using namespace NUT_NAMESPACE;
|
|
#endif
|
|
|
|
class Post;
|
|
class Comment;
|
|
class User;
|
|
class Score;
|
|
class WeblogDatabase : public Database
|
|
{
|
|
Q_OBJECT
|
|
|
|
NUT_DB_VERSION(1)
|
|
|
|
NUT_DECLARE_TABLE(Post, posts)
|
|
NUT_DECLARE_TABLE(Comment, comments)
|
|
NUT_DECLARE_TABLE(User, users)
|
|
NUT_DECLARE_TABLE(Score, scores)
|
|
|
|
public:
|
|
WeblogDatabase();
|
|
};
|
|
|
|
|
|
#endif // TDATABASE_H
|