diff options
author | bfox <bfox> | 2001-06-21 18:45:47 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-06-21 18:45:47 +0000 |
commit | 213c3f6df6b571a75d661ad89581d12f8c40768c (patch) | |
tree | ea1b05c77c0baf4a8c6e36ad0893b63b8474600d | |
parent | 9877377f9a818b3c30231c50cf2aa45e2b0a2519 (diff) | |
download | anaconda-213c3f6df6b571a75d661ad89581d12f8c40768c.tar.gz anaconda-213c3f6df6b571a75d661ad89581d12f8c40768c.tar.xz anaconda-213c3f6df6b571a75d661ad89581d12f8c40768c.zip |
data class for configuration file
-rw-r--r-- | configFileData.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/configFileData.py b/configFileData.py new file mode 100644 index 000000000..25b6df099 --- /dev/null +++ b/configFileData.py @@ -0,0 +1,17 @@ +import readConfigFile + +class configFileData: + def __init__(self): + self.data = readConfigFile.getConfigFile() + + def getConfigData (self): + return self.data + + def getSplashscreen (self): + return self.data["Splashscreen"] + + def getTitleBar (self): + return self.data["TitleBar"] + + def getTitle (self): + return self.data["Title"] |