summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/matcher/base.py
blob: 51da094250894c353594cbaf0fa6f753029ca2df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
    SleekXMPP: The Sleek XMPP Library
    Copyright (C) 2010  Nathanael C. Fritz
    This file is part of SleekXMPP.

    See the file LICENSE for copying permission.
"""
class MatcherBase(object):

	def __init__(self, criteria):
		self._criteria = criteria
	
	def match(self, xml):
		return False