Welcome to mirror list, hosted at ThFree Co, Russian Federation.

plugin.py « common - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26e8bd3453270762f2213a9984b4b7b3d6b3ad49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
##	common/plugin.py
##
## Gajim Team:
## 	- Yann Le Boulanger <asterix@crans.org>
## 	- Vincent Hanquez <tab@tuxfamily.org>
##
##	Copyright (C) 2003 Gajim Team
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published
## by the Free Software Foundation; version 2 only.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##

import common.thread

""" Plugin definitions """

class GajimPlugin:
    def __init__(self, name, queueIn, queueOut):
        """ queueIn is a queue to interact from the hub to the plugin """
        self.name = name
        self.queueIn = queueIn
        self.queueOut= queueOut
    # END __init__

    def load(self):
        self.thr = common.thread.GajimThread(self.name, self.queueIn, \
		self.queueOut)
    # END load
# END GajimPlugin