00001 /*************************************************************************** 00002 * * 00003 * linklist.h * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * Read the file COPYING for details. * 00011 * * 00012 * copyright: (C) 2003 by Jan Mueller * 00013 * email: janmueller7@hotmail.com * 00014 * * 00015 ***************************************************************************/ 00016 00017 #include <qptrlist.h> 00018 00019 class LinkListItem { 00020 00021 private: 00022 LinkListItem(const LinkListItem&); 00023 LinkListItem& operator=(const LinkListItem&); 00024 00025 protected: 00026 QString t,w,tab; 00027 00028 public: 00029 LinkListItem(QString title, QString where, QString table); 00030 ~LinkListBox(); 00031 getTitle() { return t; }; 00032 getWhere() { return w; }; 00033 getTable() { return tab; }; 00034 }; 00035 00036 typedef QPtrList<LinkListItem> LinkList;