You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
567 B
34 lines
567 B
//
|
|
// C++ Interface: kbbookmarkitem
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Magnus Kulke <mkulke@magnusmachine>, (C) 2004
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef KBBOOKMARKITEM_H
|
|
#define KBBOOKMARKITEM_H
|
|
|
|
#include <tqlistview.h>
|
|
|
|
class KbSiteInfo;
|
|
|
|
/**
|
|
@author Magnus Kulke
|
|
*/
|
|
class KbBookmarkItem : public TQListViewItem
|
|
{
|
|
public:
|
|
KbBookmarkItem(TQListView *view, TQListViewItem *after, KbSiteInfo *site);
|
|
~KbBookmarkItem();
|
|
KbSiteInfo* GetSiteInfo() { return mp_siteinfo; };
|
|
private:
|
|
KbSiteInfo* mp_siteinfo;
|
|
|
|
};
|
|
|
|
#endif
|