def __init__(self, *args, **kw):
        '''
        Class constructor.
        '''

        #------------------------------------------------------------------

        TsApplication.__init__(self, *args, **kw)

        if self.enableDefaultCommandLineParser:

            theModule = tsOperatorSettingsParser
            theClass = theModule.TsOperatorSettingsParser()
            (args, options) = theClass.parseCommandLineDispatch()
            self.args = args
            self.options = options
 def __init__(self, *args, **kw):
     '''
     Class constructor.
     '''
     TsApplication.__init__(self, *args, **kw)