~ubuntu-core-dev/synaptic/ubuntu

« back to all changes in this revision

Viewing changes to common/rpackageview.h

  • Committer: Michael Vogt
  • Date: 2008-05-28 15:05:31 UTC
  • mto: (1529.15.2 ept)
  • mto: This revision was merged to the branch mainline in revision 1648.
  • Revision ID: michael.vogt@ubuntu.com-20080528150531-culdln1tn4vocekp
remove some cruft

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
   void addPackage(RPackage *package);
221
221
};
222
222
 
223
 
#ifdef WITH_EPT
224
 
class RPackageViewEptSearch : public RPackageView {
225
 
 protected:
226
 
   RPackageLister* lister;
227
 
   string searchString;
228
 
   string searchName;
229
 
   int found; // nr of found pkgs for the last search
230
 
 public:
231
 
   RPackageViewEptSearch(RPackageLister* lister, vector<RPackage *> &allPkgs) 
232
 
      : RPackageView(allPkgs), lister(lister), found(0) {};
233
 
 
234
 
   int setSearch(string searchName, string searchString);
235
 
 
236
 
   string getName() {
237
 
      return _("Fast Search History");
238
 
   };
239
 
 
240
 
   void addPackage(RPackage *package);
241
 
 
242
 
   virtual void refresh();
243
 
};
244
 
#endif
245
 
 
246
 
 
247
223
#endif
248
224
 
249
225
// vim:sts=3:sw=3