~ubuntu-branches/ubuntu/saucy/quassel/saucy

« back to all changes in this revision

Viewing changes to src/common/basichandler.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2012-02-14 18:38:55 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20120214183855-ak8af7n6qweqy3f0
Tags: 0.8~beta1-0ubuntu1
* New upstream beta release
  - Update quasselcore man page for new oidentd option 

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
public:
34
34
  BasicHandler(QObject *parent = 0);
 
35
  BasicHandler(const QString &methodPrefix, QObject *parent = 0);
35
36
 
36
37
  QStringList providesHandlers();
37
38
 
45
46
private:
46
47
  const QHash<QString, int> &handlerHash();
47
48
  QHash<QString, int> _handlerHash;
48
 
  int defaultHandler;
49
 
  bool initDone;
 
49
  int _defaultHandler;
 
50
  bool _initDone;
 
51
  QString _methodPrefix;
50
52
};
51
53
#endif