aboutsummaryrefslogtreecommitdiff
blob: e99a7a1b9f6ca4ade22bdaf446cdb81d0a0bda75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/python
#
# Copyright(c) 2006, James Le Cuirot <chewi@aura-online.co.uk>
#
# Licensed under the GNU General Public License, v2
#
# $Header: $

class Parser:
	def parse(self, ins):
		raise NotImplementedError
	def output(self, tree):
		raise NotImplementedError		

if __name__ == "__main__":
	print "This is not an executable module"