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 PACKAGELISTREMOTE_H 00011 #define PACKAGELISTREMOTE_H 00012 00013 #include "packagelist.h" 00014 #include "package.h" 00015 #include "pksettings.h" 00016 #include "debug.h" 00017 00018 class PackageListRemote : public PackageList { 00019 public: 00020 PackageListRemote(); 00021 PackageListRemote( PackageManagerSettings* s); 00022 virtual ~PackageListRemote(); 00023 void query(QString); 00024 public slots: 00025 void update(); 00026 private: 00027 QString searchString; 00028 }; 00029 00030 #endif
1.4.2