42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#ifndef _QX_BLOG_CATEGORY_H_
|
|
#define _QX_BLOG_CATEGORY_H_
|
|
|
|
class blog;
|
|
|
|
class QX_BLOG_DLL_EXPORT category
|
|
{
|
|
public:
|
|
// -- typedef
|
|
typedef std::shared_ptr<blog> blog_ptr;
|
|
typedef qx::QxCollection<long, blog_ptr> list_blog;
|
|
typedef qx::QxCollection<long, blog_ptr> type_list_of_blog;
|
|
// -- properties
|
|
long m_id;
|
|
QString m_name;
|
|
QString m_desc;
|
|
list_blog m_blogX;
|
|
// -- contructor, virtual destructor
|
|
category() : m_id(0) { ; }
|
|
virtual ~category() { ; }
|
|
|
|
long getcategory_id() const;
|
|
QString getname() const;
|
|
QString getdescription() const;
|
|
type_list_of_blog getlist_of_blog() const;
|
|
type_list_of_blog & list_of_blog();
|
|
const type_list_of_blog & list_of_blog() const;
|
|
|
|
void setcategory_id(const long & val);
|
|
void setname(const QString & val);
|
|
void setdescription(const QString & val);
|
|
void setlist_of_blog(const type_list_of_blog & val);
|
|
|
|
};
|
|
|
|
QX_REGISTER_HPP_QX_BLOG(category, qx::trait::no_base_class_defined, 0)
|
|
|
|
typedef QSharedPointer<category> category_ptr;
|
|
typedef qx::QxCollection<long, category_ptr> list_category;
|
|
|
|
#endif // _QX_BLOG_CATEGORY_H_
|