~paulbrianstewart/ubuntu/oneiric/tellico/852247-Formatting-Fix

« back to all changes in this revision

Viewing changes to src/fetch/yahoofetcher.h

  • Committer: Bazaar Package Importer
  • Author(s): Regis Boudin
  • Date: 2008-05-23 21:28:59 UTC
  • mfrom: (0.1.14 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20080523212859-n0gl4ap37xb0uj1a
Tags: 1.3.2-1
* New upstream release.
* Recommend khelpcenter for acces to the help (Closes: #478975).

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  namespace Fetch {
34
34
 
35
35
/**
36
 
 * A fetcher for Amazon.com.
37
 
 *
38
36
 * @author Robby Stephenson
39
37
 */
40
38
class YahooFetcher : public Fetcher {
54
52
  virtual bool isSearching() const { return m_started; }
55
53
  virtual void search(FetchKey key, const QString& value);
56
54
  virtual void continueSearch();
57
 
  // amazon can search title or person
58
55
  virtual bool canSearch(FetchKey k) const { return k == Title || k == Person; }
59
56
  virtual void stop();
60
57
  virtual Data::EntryPtr fetchEntry(uint uid);