#--------------------------------------------------------------------------- # Name: etgtools/generators.py # Author: Robin Dunn # # Created: 3-Nov-2010 # Copyright: (c) 2010 by Total Control Software # License: wxWindows License #--------------------------------------------------------------------------- """ Just some base classes and stubs for the various generators """ class WrapperGeneratorBase(object): def __init__(self): pass def generate(self, module, destFile=None): raise NotImplementedError class DocsGeneratorBase(object): def __init__(self): pass def generate(self, module): raise NotImplementedError class StubbedDocsGenerator(DocsGeneratorBase): def generate(self, module): pass #---------------------------------------------------------------------------