Source code for enaml.qt.qt_form

#------------------------------------------------------------------------------
#  Copyright (c) 2012, Enthought, Inc.
#  All rights reserved.
#------------------------------------------------------------------------------
from .qt_container import QtContainer


[docs]class QtForm(QtContainer): """ A Qt implementation of an Enaml Form. """ # Currently, the QtContainer superclass is a sufficient implementation. pass