AModelComponent.py 206 bytes
# -*- coding: utf-8 -*-

class AbstractModelComponent(object):
    def __init__(self):
        super(AbstractModelComponent, self).__init__()

    def new(self, filename):


    def export(self, filename):