~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to src/ahcservermanager.h

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 *
19
19
 */
20
 
 
 
20
 
21
21
#ifndef AHCSERVERMANAGER_H
22
22
#define AHCSERVERMANAGER_H
23
23
 
32
32
        class Jid;
33
33
}
34
34
 
35
 
class AHCServerManager 
 
35
class AHCServerManager
36
36
{
37
37
public:
38
38
        AHCServerManager(PsiAccount* pa);
39
39
        void addServer(AHCommandServer*);
40
40
        void removeServer(AHCommandServer*);
41
 
        
 
41
 
42
42
        typedef QList<AHCommandServer*> ServerList;
43
43
        ServerList commands(const XMPP::Jid&) const;
44
44
        void execute(const AHCommand& command, const XMPP::Jid& requester, QString id);