Source code for enaml.wx.wx_form

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


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