1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
// This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2009 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef COMMENT_H_
#define COMMENT_H_
#include <Wt/WDateTime>
#include <Wt/Dbo/Types>
#include <Wt/Dbo/WtSqlTraits>
class Comment;
class Post;
class User;
namespace dbo = Wt::Dbo;
typedef dbo::collection<dbo::ptr<Comment> > Comments;
class Comment {
public:
dbo::ptr<User> author;
dbo::ptr<Post> post;
dbo::ptr<Comment> parent;
Wt::WDateTime date;
Wt::WString textSrc;
Wt::WString textHtml;
Comments children;
template<class Action>
void persist(Action& a)
{
dbo::field(a, date, "date");
dbo::field(a, textSrc, "text_source");
dbo::field(a, textHtml, "text_html");
dbo::belongsTo(a, post, "post");
dbo::belongsTo(a, author, "author");
dbo::belongsTo(a, parent, "parent");
dbo::hasMany(a, children, dbo::ManyToOne, "parent");
}
};
DBO_EXTERN_TEMPLATES(Comment);
#endif // COMMENT_H_
|