Esempio n. 1
0
def setOptNum(props, key, value):
    return SXOpts.setOptNum(props, key, value)
Esempio n. 2
0
def delOpt(props, key):
    return SXOpts.delOpt(props, key)
Esempio n. 3
0
def getOptNum(props, key, deflt=0):
    return SXOpts.getOptNum(props, key, deflt)
Esempio n. 4
0
def getOptInt(props, key, deflt=0):
    return SXOpts.getOptInt(props, key, deflt)
Esempio n. 5
0
def hasOpt(props, key):
    return SXOpts.hasOpts(props, key)
Esempio n. 6
0
def getOpt(props, key, deflt=""):
    return SXOpts.getOpt(props, key, deflt)
Esempio n. 7
0
def delOpts(props):
    return SXOpts.delOpts(props)
Esempio n. 8
0
def saveOpts(props, filePath=None):
    if not filePath:
        return SXOpts.saveOpts(props)
    else:
        return SXOpts.saveOpts(props, filePath)
Esempio n. 9
0
def setOpts(props, adict):
    return SXOpts.setOpts(props, adict)
Esempio n. 10
0
def hasOpts(props):
    return SXOpts.hasOpts(props)
Esempio n. 11
0
def getOpts(props):
    return SXOpts.getOpts(props)
Esempio n. 12
0
def loadOpts(filePath):
    return SXOpts.loadOpts(filePath)
Esempio n. 13
0
def makeOpts():
    return SXOpts.makeOpts()