~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to knode/knscoring.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#ifndef KNSCORING_H
16
16
#define KNSCORING_H
17
17
 
18
 
#include <kscoring.h>
 
18
#include "knarticle.h"
 
19
#include "kscoring.h"
19
20
 
20
 
class KNRemoteArticle;
21
21
using namespace KPIM;
22
22
 
23
23
/** Article interface for the scoring system. */
24
24
class KNScorableArticle : public ScorableArticle
25
25
{
26
26
public:
27
 
  KNScorableArticle(KNRemoteArticle*);
 
27
  KNScorableArticle( KNRemoteArticle::Ptr a );
28
28
  virtual ~KNScorableArticle();
29
29
 
30
30
  virtual void addScore(short s);
38
38
  static NotifyCollection* notifyC;
39
39
 
40
40
private:
41
 
  KNRemoteArticle *_a;
 
41
  KNRemoteArticle::Ptr _a;
42
42
};
43
43
 
44
44