00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00009 // (c) 2002 Patrick S. Vogt <tille@handhelds.org> 00010 #ifndef PACKAGELISTDOCLNK_H 00011 #define PACKAGELISTDOCLNK_H 00012 00013 #include "packagelist.h" 00014 #include "debug.h" 00015 00016 class DocLnkSet; 00017 00018 class PackageListDocLnk : public PackageList 00019 { 00020 public: 00021 PackageListDocLnk(QObject *parent=0, const char *name=0); 00022 PackageListDocLnk( PackageManagerSettings *s, QObject *parent=0, const char *name=0); 00023 virtual ~PackageListDocLnk(); 00024 public slots: 00025 void update(); 00026 private: 00027 DocLnkSet *doclnkset; 00028 QString docLnkDir; 00029 }; 00030 00031 00032 #endif
1.4.2