コード例 #1
0
ファイル: offline_messages.py プロジェクト: FaithNahn/amsn2
 def __init__(self, client):
     BaseEventInterface.__init__(self, client)
コード例 #2
0
ファイル: profile.py プロジェクト: FaithNahn/amsn2
 def __init__(self, client):
     """Initializer
         @param client: the client we want to be notified for its events
         @type client: L{Client<pymsn.Client>}"""
     BaseEventInterface.__init__(self, client)
コード例 #3
0
ファイル: conversation.py プロジェクト: FaithNahn/amsn2
 def __init__(self, conversation):
     """Initializer
         @param conversation: the conversation we want to be notified for its events
         @type conversation: L{Conversation<pymsn.conversation.ConversationInterface>}"""
     BaseEventInterface.__init__(self, conversation)