Interactive/FlashExportFlvCustom.py

# (C) Copyright 2012 Autodesk, Inc.  All rights reserved.
#
# Use of this software is subject to the terms of the Autodesk license
# agreement provided at the time of installation or download, or which
# otherwise accompanies this software in either electronic or hard copy
# form.

# You will need Autodesk Showcase 2011 or later.
#
# Obsolete
#

__all__ = ['FlashExportFlvCustom', 'instantiate']

from UserCustomization   import UserCustomBase, CustomInfo

class FlashExportFlv( UserCustomBase ):
    def __init__( self ):
        pass

def instantiate():
    return FlashExportFlv()

def info():
    customInfo = CustomInfo()
    customInfo.vendor = 'Autodesk'
    customInfo.version = '2.0'
    customInfo.api = '2013'
    customInfo.shortInfo = "Obsolete."
    customInfo.longInfo = \
"""Obsolete.
"""
    return customInfo