Files
vgstation13/tools/DMITool/DMIH/directives/Directive.py

14 lines
193 B
Python

'''
Created on Feb 23, 2013
@author: Rob
'''
class Directive(object):
'''
Base type for directives.
'''
name = ''
def __init__(self,name,args):
self.name=name