~ubuntu-branches/ubuntu/trusty/quassel/trusty-proposed

« back to all changes in this revision

Viewing changes to src/common/internalpeer.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-02-18 23:18:25 UTC
  • mto: This revision was merged to the branch mainline in revision 98.
  • Revision ID: package-import@ubuntu.com-20140218231825-hfgaeo3nmszt2pth
Tags: upstream-0.10~beta1
ImportĀ upstreamĀ versionĀ 0.10~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2005-2013 by the Quassel Project                        *
 
2
 *   Copyright (C) 2005-2014 by the Quassel Project                        *
3
3
 *   devel@quassel-irc.org                                                 *
4
4
 *                                                                         *
5
5
 *   This program is free software; you can redistribute it and/or modify  *
61
61
    void dispatch(const Protocol::InitRequest &msg);
62
62
    void dispatch(const Protocol::InitData &msg);
63
63
 
 
64
    /* These are not needed for InternalPeer */
 
65
    void dispatch(const Protocol::RegisterClient &) {}
 
66
    void dispatch(const Protocol::ClientDenied &) {}
 
67
    void dispatch(const Protocol::ClientRegistered &) {}
 
68
    void dispatch(const Protocol::SetupData &) {}
 
69
    void dispatch(const Protocol::SetupFailed &) {}
 
70
    void dispatch(const Protocol::SetupDone &) {}
 
71
    void dispatch(const Protocol::Login &) {}
 
72
    void dispatch(const Protocol::LoginFailed &) {}
 
73
    void dispatch(const Protocol::LoginSuccess &) {}
 
74
    void dispatch(const Protocol::SessionState &) {}
 
75
 
64
76
public slots:
65
77
    void close(const QString &reason = QString());
66
78