summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/matcher/base.py
blob: 97e4465c9948e0d99c88f93b06f77fc1cecc97c8 (plain)
1
2
3
4
5
6
7
8

class MatcherBase(object):

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